aboutsummaryrefslogtreecommitdiffstats
path: root/markdown
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2011-08-27 18:46:42 -0400
committerWaylan Limberg <waylan@gmail.com>2011-08-27 18:46:42 -0400
commit67df2b582718a8cdfbe94af01419461867a7b27c (patch)
tree9273768d7b254c791176c2f691db6d53b254b9e3 /markdown
parentb51f22daa98c8c484b48134fe5f1b19b7a6291c3 (diff)
downloadmarkdown-67df2b582718a8cdfbe94af01419461867a7b27c.tar.gz
markdown-67df2b582718a8cdfbe94af01419461867a7b27c.tar.bz2
markdown-67df2b582718a8cdfbe94af01419461867a7b27c.zip
Added greater-than as an escaped character. Apparently markdown.pl escapes it even though it is not documented.
Diffstat (limited to 'markdown')
-rw-r--r--markdown/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py
index 2aafcf6..0f7978b 100644
--- a/markdown/__init__.py
+++ b/markdown/__init__.py
@@ -74,7 +74,7 @@ class Markdown:
}
ESCAPED_CHARS = ['\\', '`', '*', '_', '{', '}', '[', ']',
- '(', ')', '#', '+', '-', '.', '!']
+ '(', ')', '>', '#', '+', '-', '.', '!']
def __init__(self, *args, **kwargs):
"""