(self, parent: etree.Element, block: str)
| 607 | """ Process Paragraph blocks. """ |
| 608 | |
| 609 | def test(self, parent: etree.Element, block: str) -> bool: |
| 610 | return True |
| 611 | |
| 612 | def run(self, parent: etree.Element, blocks: list[str]) -> None: |
| 613 | block = blocks.pop(0) |
nothing calls this directly
no outgoing calls
no test coverage detected