`config` is a dumb holder which gets passed to the actual extension later.
(self, **kwargs)
| 54 | """ Add various extensions to Markdown class.""" |
| 55 | |
| 56 | def __init__(self, **kwargs): |
| 57 | """ `config` is a dumb holder which gets passed to the actual extension later. """ |
| 58 | self.config = kwargs |
| 59 | |
| 60 | def extendMarkdown(self, md): |
| 61 | """ Register extension instances. """ |
nothing calls this directly
no outgoing calls
no test coverage detected