diff options
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/GroffChar.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/GroffChar.hs b/src/Text/Pandoc/GroffChar.hs index 8664c627f..97ff0b100 100644 --- a/src/Text/Pandoc/GroffChar.hs +++ b/src/Text/Pandoc/GroffChar.hs @@ -48,8 +48,8 @@ essentialEscapes = Map.fromList , ('^', "\\[ha]") , ('@', "\\[at]") , ('\\', "\\[rs]") + , ('-', "\\-") -- minus; - will be interpreted as hyphen U+2010 , ('\x2026', "\\&...") -- because u2026 doesn't render on tty - , ('\x2212', "\\-") -- minus ] characterCodes :: [(Char, String)] |