MCPcopy Create free account
hub / github.com/Python-Markdown/markdown / __init__

Method __init__

markdown/blockprocessors.py:170–172  ·  view source on GitHub ↗
(self, *args)

Source from the content-addressed store, hash-verified

168 """ Types of lists this processor can operate on. """
169
170 def __init__(self, *args):
171 super().__init__(*args)
172 self.INDENT_RE = re.compile(r'^(([ ]{%s})+)' % self.tab_length)
173
174 def test(self, parent: etree.Element, block: str) -> bool:
175 return block.startswith(' '*self.tab_length) and \

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected