(self, **kwargs)
| 229 | """ Add tables to Markdown. """ |
| 230 | |
| 231 | def __init__(self, **kwargs): |
| 232 | self.config = { |
| 233 | 'use_align_attribute': [False, 'True to use align attribute instead of style.'], |
| 234 | } |
| 235 | """ Default configuration options. """ |
| 236 | |
| 237 | super().__init__(**kwargs) |
| 238 | |
| 239 | def extendMarkdown(self, md): |
| 240 | """ Register the processor. |