(self, parent: etree.Element, block: str)
| 312 | """Process Markdown Inside HTML Blocks which have been stored in the `HtmlStash`.""" |
| 313 | |
| 314 | def test(self, parent: etree.Element, block: str) -> bool: |
| 315 | # Always return True. `run` will return `False` it not a valid match. |
| 316 | return True |
| 317 | |
| 318 | def parse_element_content(self, element: etree.Element) -> None: |
| 319 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected