diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-03-18 14:50:57 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-03-18 14:52:03 -0700 |
commit | 3d21c184d47b17fa8b7213ed7014703214268292 (patch) | |
tree | e8adfcffec001c91b3f135eac1bee6e0a6dde3f3 /src | |
parent | 0ef56657edc84654a00fe609b432b15271349c26 (diff) | |
download | pandoc-3d21c184d47b17fa8b7213ed7014703214268292.tar.gz |
Ms writer: don't escape hyphens.
Previously we escaped hyphens as `\-`, but that's a minus sign.
Closes #4467.
Updated changelog.
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Writers/Ms.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Ms.hs b/src/Text/Pandoc/Writers/Ms.hs index cab44f817..600b71c40 100644 --- a/src/Text/Pandoc/Writers/Ms.hs +++ b/src/Text/Pandoc/Writers/Ms.hs @@ -142,7 +142,6 @@ msEscapes = Map.fromList , ('\x2026', "\\&...") , ('~', "\\[ti]") , ('^', "\\[ha]") - , ('-', "\\-") , ('@', "\\@") , ('\\', "\\\\") ] |