Add an instance of `TableProcessor` to `BlockParser`.
(self, md)
| 237 | super().__init__(**kwargs) |
| 238 | |
| 239 | def extendMarkdown(self, md): |
| 240 | """ Add an instance of `TableProcessor` to `BlockParser`. """ |
| 241 | if '|' not in md.ESCAPED_CHARS: |
| 242 | md.ESCAPED_CHARS.append('|') |
| 243 | processor = TableProcessor(md.parser, self.getConfigs()) |
| 244 | md.parser.blockprocessors.register(processor, 'table', 75) |
| 245 | |
| 246 | |
| 247 | def makeExtension(**kwargs): # pragma: no cover |
nothing calls this directly
no test coverage detected