aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-10-17 17:39:42 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-10-17 17:39:42 -0700
commit24f388e1a7ea4a6affad232035526191e5df961d (patch)
treeabb0fa55a36ae0bbecfb9191ef1082e4826455bc /src/Text/Pandoc/Writers
parentebdb2deb0d1d71cf1d7f490fe0e2938d2d7f4d74 (diff)
downloadpandoc-24f388e1a7ea4a6affad232035526191e5df961d.tar.gz
man/ms writers: use `\[at]` for escaped `@`.
Diffstat (limited to 'src/Text/Pandoc/Writers')
-rw-r--r--src/Text/Pandoc/Writers/Groff.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Groff.hs b/src/Text/Pandoc/Writers/Groff.hs
index aac76060e..cb7252726 100644
--- a/src/Text/Pandoc/Writers/Groff.hs
+++ b/src/Text/Pandoc/Writers/Groff.hs
@@ -97,7 +97,7 @@ groffEscapes = Map.fromList
, ('\x2026', "\\&...")
, ('~', "\\[ti]")
, ('^', "\\[ha]")
- , ('@', "\\@")
+ , ('@', "\\[at]")
, ('\\', "\\\\")
]