(self, lines: list[str])
| 84 | """ |
| 85 | |
| 86 | def run(self, lines: list[str]) -> list[str]: |
| 87 | source = '\n'.join(lines) |
| 88 | parser = HTMLExtractor(self.md) |
| 89 | parser.feed(source) |
| 90 | parser.close() |
| 91 | return ''.join(parser.cleandoc).split('\n') |
nothing calls this directly
no test coverage detected