We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16251fa commit 6cdcbefCopy full SHA for 6cdcbef
blog/models.py
@@ -23,7 +23,8 @@
23
}
24
BLOG_DOCUTILS_SETTINGS.update(getattr(settings, "BLOG_DOCUTILS_SETTINGS", {}))
25
26
-# List copied from markdown.Markdown.ESCAPED_CHARS
+# List copied from:
27
+# https://github.com/Python-Markdown/markdown/blob/3.8/markdown/core.py#L112
28
_MD_ESCAPE_CHARS = "\\`*_{}[]>()#+-.!"
29
_MD_ESCAPE_REGEX = re.compile(f"[{re.escape(_MD_ESCAPE_CHARS)}]")
30
0 commit comments