aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-12-07 20:44:43 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2010-12-07 20:44:43 -0800
commit33ba35da9fd584a17b6b1011daa76a8232799c18 (patch)
tree8516d3b07845d0ff3b948d32786eabd80c9fd0c8 /src/Text/Pandoc/Readers
parent3a5fceeef9c5f55b1769fbe95bf420ca3a20ea35 (diff)
downloadpandoc-33ba35da9fd584a17b6b1011daa76a8232799c18.tar.gz
Smart punctuation: recognize entities.
Now &ldquo;Hi&rdquo; gets parsed as a Quoted DoubleQuote inline.
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r--src/Text/Pandoc/Readers/Markdown.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs
index c9f6adcb3..41eea16c5 100644
--- a/src/Text/Pandoc/Readers/Markdown.hs
+++ b/src/Text/Pandoc/Readers/Markdown.hs
@@ -900,7 +900,6 @@ inlineParsers = [ str
, whitespace
, endline
, code
- , charRef
, (fourOrMore '*' <|> fourOrMore '_')
, strong
, emph
@@ -919,6 +918,7 @@ inlineParsers = [ str
, escapedChar
, exampleRef
, smartPunctuation inline
+ , charRef
, symbol
, ltSign ]