(self, *args)
| 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 \ |