MCPcopy Create free account
hub / github.com/executablebooks/markdown-it-py / make

Method make

markdown_it/presets/__init__.py:20–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

18
19 @staticmethod
20 def make() -> PresetType:
21 config = commonmark.make()
22 config["components"]["core"]["rules"].append("linkify")
23 config["components"]["block"]["rules"].append("table")
24 config["components"]["inline"]["rules"].extend(["strikethrough", "linkify"])
25 config["components"]["inline"]["rules2"].append("strikethrough")
26 config["options"]["linkify"] = True
27 config["options"]["html"] = True
28 return config
29
30
31class gfm_like2: # noqa: N801

Callers 3

main.pyFile · 0.45
makeMethod · 0.45
test_highlight_argumentsFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_highlight_argumentsFunction · 0.36