MCPcopy Index your code
hub / github.com/Python-Markdown/markdown / __init__

Method __init__

markdown/extensions/footnotes.py:239–241  ·  view source on GitHub ↗
(self, footnotes: FootnoteExtension)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected