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

Method __init__

markdown/extensions/fenced_code.py:39–44  ·  view source on GitHub ↗
(self, **kwargs)

Source from the content-addressed store, hash-verified

37
38class FencedCodeExtension(Extension):
39 def __init__(self, **kwargs):
40 self.config = {
41 'lang_prefix': ['language-', 'Prefix prepended to the language. Default: "language-"']
42 }
43 """ Default configuration options. """
44 super().__init__(**kwargs)
45
46 def extendMarkdown(self, md):
47 """

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected