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

Method __init__

markdown/extensions/tables.py:231–237  ·  view source on GitHub ↗
(self, **kwargs)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected