From 3c69b0fb1d86f68a337bf3bd9b4a86b30a5fe6bf Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Sun, 21 Jun 2015 21:21:49 -0400 Subject: Fixed many failing tests in inline refactor. Still a ways to go. --- markdown/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'markdown/core.py') 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): """ -- cgit v1.2.1