(self, parent: etree.Element, block: str)
| 252 | """ Process code blocks. """ |
| 253 | |
| 254 | def test(self, parent: etree.Element, block: str) -> bool: |
| 255 | return block.startswith(' '*self.tab_length) |
| 256 | |
| 257 | def run(self, parent: etree.Element, blocks: list[str]) -> None: |
| 258 | sibling = self.lastChild(parent) |
nothing calls this directly
no outgoing calls
no test coverage detected