Initialization.
(self, parser: blockparser.BlockParser)
| 63 | RE_SPACES = re.compile(' +') |
| 64 | |
| 65 | def __init__(self, parser: blockparser.BlockParser): |
| 66 | """Initialization.""" |
| 67 | |
| 68 | super().__init__(parser) |
| 69 | |
| 70 | self.current_sibling: etree.Element | None = None |
| 71 | self.content_indent = 0 |
| 72 | |
| 73 | def parse_content(self, parent: etree.Element, block: str) -> tuple[etree.Element | None, str, str]: |
| 74 | """Get sibling admonition. |
nothing calls this directly
no outgoing calls
no test coverage detected