()
| 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 | |
| 31 | class gfm_like2: # noqa: N801 |
no outgoing calls