aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'markdown/__init__.py')
-rw-r--r--markdown/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py
index f7957a5..2aafcf6 100644
--- a/markdown/__init__.py
+++ b/markdown/__init__.py
@@ -73,6 +73,9 @@ class Markdown:
'xhtml5': to_xhtml_string,
}
+ ESCAPED_CHARS = ['\\', '`', '*', '_', '{', '}', '[', ']',
+ '(', ')', '#', '+', '-', '.', '!']
+
def __init__(self, *args, **kwargs):
"""
Creates a new Markdown instance.