aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/Groff.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/Writers/Groff.hs')
-rw-r--r--src/Text/Pandoc/Writers/Groff.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Writers/Groff.hs b/src/Text/Pandoc/Writers/Groff.hs
index b0e8d3d06..5d51314bb 100644
--- a/src/Text/Pandoc/Writers/Groff.hs
+++ b/src/Text/Pandoc/Writers/Groff.hs
@@ -47,7 +47,7 @@ import Text.Pandoc.Class (PandocMonad)
import Text.Pandoc.Definition
import Text.Pandoc.Pretty
import Text.Printf (printf)
-import Text.Pandoc.GroffChar (manEscapes,
+import Text.Pandoc.GroffChar (standardEscapes,
characterCodes, combiningAccents)
data WriterState = WriterState { stHasInlineMath :: Bool
@@ -87,7 +87,7 @@ combiningAccentsMap :: Map.Map Char String
combiningAccentsMap = Map.fromList combiningAccents
essentialEscapes :: Map.Map Char String
-essentialEscapes = Map.fromList manEscapes
+essentialEscapes = Map.fromList standardEscapes
-- | Escape special characters for groff.
escapeString :: EscapeMode -> String -> String