()
| 1 | function removeInlineStyle() { |
| 2 | this.process((doc, output) => { |
| 3 | return output.replace(/\s*style="[^"]+"\s*/g, '') |
| 4 | }) |
| 5 | } |
| 6 | |
| 7 | module.exports.register = (registry, context) => { |
| 8 | registry.postprocessor(removeInlineStyle) |
nothing calls this directly
no outgoing calls
no test coverage detected