summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-12-22 17:04:56 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2010-12-22 17:04:56 -0800
commit63bf227e0414495a7966edd07d5faf6ca4a2f077 (patch)
tree394ab70d5be6bb0630aa81d76811efeef109a565 /src
parentbbad12906632291d146a8ad634309a689c3b46af (diff)
RST reader: Added unicode quote characters to specialChars.
(So they can trigger Quoted environments.)
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Readers/RST.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/RST.hs b/src/Text/Pandoc/Readers/RST.hs
index 1b0365c72..0a157d1cf 100644
--- a/src/Text/Pandoc/Readers/RST.hs
+++ b/src/Text/Pandoc/Readers/RST.hs
@@ -57,7 +57,7 @@ underlineChars = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
-- treat these as potentially non-text when parsing inline:
specialChars :: [Char]
-specialChars = "\\`|*_<>$:[-.\"'"
+specialChars = "\\`|*_<>$:[-.\"'\8216\8217\8220\8221"
--
-- parsing documents