(self, parent: etree.Element, block: str)
| 287 | RE = re.compile(r'(^|\n)[ ]{0,3}>[ ]?(.*)') |
| 288 | |
| 289 | def test(self, parent: etree.Element, block: str) -> bool: |
| 290 | return bool(self.RE.search(block)) and not util.nearing_recursion_limit() |
| 291 | |
| 292 | def run(self, parent: etree.Element, blocks: list[str]) -> None: |
| 293 | block = blocks.pop(0) |
nothing calls this directly
no outgoing calls
no test coverage detected