(self, parser: BlockParser, abbrs: dict)
| 143 | RE = re.compile(r'^[*]\[(?P<abbr>[^\\]*?)\][ ]?:[ ]*\n?[ ]*(?P<title>.*)$', re.MULTILINE) |
| 144 | |
| 145 | def __init__(self, parser: BlockParser, abbrs: dict): |
| 146 | self.abbrs: dict = abbrs |
| 147 | super().__init__(parser) |
| 148 | |
| 149 | def test(self, parent: etree.Element, block: str) -> bool: |
| 150 | return True |