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 3ac2a7e commit f468810Copy full SHA for f468810
markdown_it/common/utils.py
@@ -85,10 +85,10 @@ def fromCodePoint(c: int) -> str:
85
return chr(c)
86
87
88
-# UNESCAPE_MD_RE = re.compile(r'\\([!"#$%&\'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])')
+# UNESCAPE_MD_RE = re.compile(r'\\([!"#$%&\'()*+,\-./:;<=>?@[\\\]^_`{|}~])')
89
# ENTITY_RE_g = re.compile(r'&([a-z#][a-z0-9]{1,31})', re.IGNORECASE)
90
UNESCAPE_ALL_RE = re.compile(
91
- r'\\([!"#$%&\'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])' + "|" + r"&([a-z#][a-z0-9]{1,31});",
+ r'\\([!"#$%&\'()*+,\-./:;<=>?@[\\\]^_`{|}~])' + "|" + r"&([a-z#][a-z0-9]{1,31});",
92
re.IGNORECASE,
93
)
94
DIGITAL_ENTITY_BASE10_RE = re.compile(r"#([0-9]{1,8})")
0 commit comments