(self, parser: blockparser.BlockParser)
| 51 | """ Exclude `ol` from list of siblings. """ |
| 52 | |
| 53 | def __init__(self, parser: blockparser.BlockParser): |
| 54 | super().__init__(parser) |
| 55 | self.CHILD_RE = re.compile(r'^[ ]{0,%d}(([*+-]))[ ]+(.*)' % |
| 56 | (self.tab_length - 1)) |
| 57 | |
| 58 | |
| 59 | class SaneListExtension(Extension): |