(self, footnotes: FootnoteExtension)
| 249 | RE = re.compile(r'^[ ]{0,3}\[\^([^\]]*)\]:[ ]*(.*)$', re.MULTILINE) |
| 250 | |
| 251 | def __init__(self, footnotes: FootnoteExtension): |
| 252 | super().__init__(footnotes.parser) |
| 253 | self.footnotes = footnotes |
| 254 | |
| 255 | def test(self, parent: etree.Element, block: str) -> bool: |
| 256 | return True |