diff options
Diffstat (limited to 'markdown/core.py')
-rw-r--r-- | markdown/core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/markdown/core.py b/markdown/core.py index 0b21d06..47a6c78 100644 --- a/markdown/core.py +++ b/markdown/core.py @@ -29,8 +29,8 @@ class Markdown(object): 'xhtml': to_xhtml_string, } - ESCAPED_CHARS = ['\\', '`', '*', '_', '{', '}', '[', ']', - '(', ')', '>', '#', '+', '-', '.', '!'] + ESCAPED_CHARS = ['\\', '`', '*', '_', '{', '}', '[', ']', '&', + '(', ')', '<', '>', '#', '+', '-', '.', '!'] def __init__(self, **kwargs): """ |