Each subclass of Preprocessor should override the `run` method, which takes the document as a list of strings split by newlines and returns the (possibly modified) list of lines.
(self, lines)
| 30 | |
| 31 | """ |
| 32 | def run(self, lines): |
| 33 | """ |
| 34 | Each subclass of Preprocessor should override the `run` method, which |
| 35 | takes the document as a list of strings split by newlines and returns |
| 36 | the (possibly modified) list of lines. |
| 37 | |
| 38 | """ |
| 39 | pass |
| 40 | |
| 41 | class HtmlStash: |
| 42 | """ |
no outgoing calls
no test coverage detected