(self, parent: etree.Element, block: str)
| 461 | RE = re.compile(r'(?:^|\n)(?P<level>#{1,6})(?P<header>(?:\\.|[^\\])*?)#*(?:\n|$)') |
| 462 | |
| 463 | def test(self, parent: etree.Element, block: str) -> bool: |
| 464 | return bool(self.RE.search(block)) |
| 465 | |
| 466 | def run(self, parent: etree.Element, blocks: list[str]) -> None: |
| 467 | block = blocks.pop(0) |
nothing calls this directly
no outgoing calls
no test coverage detected