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

Method getConfigInfo

markdown/extensions/__init__.py:85–92  ·  view source on GitHub ↗

Return descriptions of all configuration options. Returns: All descriptions of configuration options.

(self)

Source from the content-addressed store, hash-verified

83 return {key: self.getConfig(key) for key in self.config.keys()}
84
85 def getConfigInfo(self) -> list[tuple[str, str]]:
86 """
87 Return descriptions of all configuration options.
88
89 Returns:
90 All descriptions of configuration options.
91 """
92 return [(key, self.config[key][1]) for key in self.config.keys()]
93
94 def setConfig(self, key: str, value: Any) -> None:
95 """

Callers 1

testGetConfigInfoMethod · 0.80

Calls

no outgoing calls

Tested by 1

testGetConfigInfoMethod · 0.64