(self, footnotes: FootnoteExtension)
| 237 | RE = re.compile(r'^[ ]{0,3}\[\^([^\]]*)\]:[ ]*(.*)$', re.MULTILINE) |
| 238 | |
| 239 | def __init__(self, footnotes: FootnoteExtension): |
| 240 | super().__init__(footnotes.parser) |
| 241 | self.footnotes = footnotes |
| 242 | |
| 243 | def test(self, parent: etree.Element, block: str) -> bool: |
| 244 | return True |