From 26b4aa77f5b85f47a96a5930a67dfbec53b8710d Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Sat, 9 Feb 2008 04:38:33 +0000 Subject: No longer replacing " with @quot;. Fixes [1862742] --- markdown.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'markdown.py') diff --git a/markdown.py b/markdown.py index b463ef4..2279c91 100644 --- a/markdown.py +++ b/markdown.py @@ -1,7 +1,7 @@ #!/usr/bin/env python version = "1.7" -version_info = (1,7,0,"rc-1") +version_info = (1,7,0,"rc-2") __revision__ = "$Rev$" """ @@ -127,8 +127,7 @@ want. It also adds extra white space when converting DOM to string ENTITY_NORMALIZATION_EXPRESSIONS = [ (re.compile("&"), "&"), (re.compile("<"), "<"), - (re.compile(">"), ">"), - (re.compile("\""), """)] + (re.compile(">"), ">")] ENTITY_NORMALIZATION_EXPRESSIONS_SOFT = [ (re.compile("&(?!\#)"), "&"), (re.compile("<"), "<"), -- cgit v1.2.3