(self, lines: list[str])
| 301 | """Remove html blocks from the text and store them for later retrieval.""" |
| 302 | |
| 303 | def run(self, lines: list[str]) -> list[str]: |
| 304 | source = '\n'.join(lines) |
| 305 | parser = HTMLExtractorExtra(self.md) |
| 306 | parser.feed(source) |
| 307 | parser.close() |
| 308 | return ''.join(parser.cleandoc).split('\n') |
| 309 | |
| 310 | |
| 311 | class MarkdownInHtmlProcessor(BlockProcessor): |
nothing calls this directly
no test coverage detected