diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-10-29 05:52:17 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-10-29 05:52:17 +0000 |
commit | 75f31c944057b8fda5bd5ef1005afe4faa59ba81 (patch) | |
tree | 88df60c8c4a342202dfa5dc67159bec55b30e1b2 /src | |
parent | 2d47831f9a8699dbfe39e7a9c147106bf7abfaf2 (diff) | |
download | pandoc-75f31c944057b8fda5bd5ef1005afe4faa59ba81.tar.gz |
Added % as an rst underline character.
Resolves Issue #173.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1612 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Readers/RST.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/RST.hs b/src/Text/Pandoc/Readers/RST.hs index 097d271cb..b0f434933 100644 --- a/src/Text/Pandoc/Readers/RST.hs +++ b/src/Text/Pandoc/Readers/RST.hs @@ -50,7 +50,7 @@ bulletListMarkers :: [Char] bulletListMarkers = "*+-" underlineChars :: [Char] -underlineChars = "!\"#$&'()*+,-./:;<=>?@[\\]^_`{|}~" +underlineChars = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~" -- treat these as potentially non-text when parsing inline: specialChars :: [Char] |