diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-10-26 21:28:38 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-10-26 21:29:33 -0700 |
commit | e0f985bb2139f142223f8d21e28a3a6bf4605cb7 (patch) | |
tree | 44b06d5d5483cd1c98dfc3ff55ae866bb40df59d /src/Text/Pandoc/Writers | |
parent | 52df18f476b7eb7935c2c01f566fa1adee4a8621 (diff) | |
download | pandoc-e0f985bb2139f142223f8d21e28a3a6bf4605cb7.tar.gz |
Rename Groff -> Roff.
Module T.P.Readers.Groff -> T.P.Readers.Roff
Module T.P.Writers.Groff -> T.P.Writers.Roff
Module T.P.GroffChar -> T.P.RoffChar
GroffTokens -> RoffTokens
GroffToken -> RoffToken.
Diffstat (limited to 'src/Text/Pandoc/Writers')
-rw-r--r-- | src/Text/Pandoc/Writers/Man.hs | 2 | ||||
-rw-r--r-- | src/Text/Pandoc/Writers/Ms.hs | 2 | ||||
-rw-r--r-- | src/Text/Pandoc/Writers/Roff.hs (renamed from src/Text/Pandoc/Writers/Groff.hs) | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/Text/Pandoc/Writers/Man.hs b/src/Text/Pandoc/Writers/Man.hs index c4570f761..29e4aa718 100644 --- a/src/Text/Pandoc/Writers/Man.hs +++ b/src/Text/Pandoc/Writers/Man.hs @@ -47,7 +47,7 @@ import Text.Pandoc.Shared import Text.Pandoc.Templates import Text.Pandoc.Writers.Math import Text.Pandoc.Writers.Shared -import Text.Pandoc.Writers.Groff +import Text.Pandoc.Writers.Roff import Text.Printf (printf) -- | Convert Pandoc to Man. diff --git a/src/Text/Pandoc/Writers/Ms.hs b/src/Text/Pandoc/Writers/Ms.hs index 46ddc4c59..6abc4bf93 100644 --- a/src/Text/Pandoc/Writers/Ms.hs +++ b/src/Text/Pandoc/Writers/Ms.hs @@ -60,7 +60,7 @@ import Text.Pandoc.Shared import Text.Pandoc.Templates import Text.Pandoc.Writers.Math import Text.Pandoc.Writers.Shared -import Text.Pandoc.Writers.Groff +import Text.Pandoc.Writers.Roff import Text.Printf (printf) import Text.TeXMath (writeEqn) diff --git a/src/Text/Pandoc/Writers/Groff.hs b/src/Text/Pandoc/Writers/Roff.hs index 5d51314bb..7bf0c5ee9 100644 --- a/src/Text/Pandoc/Writers/Groff.hs +++ b/src/Text/Pandoc/Writers/Roff.hs @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -} {- | - Module : Text.Pandoc.Writers.Groff + Module : Text.Pandoc.Writers.Roff Copyright : Copyright (C) 2007-2018 John MacFarlane License : GNU GPL, version 2 or above @@ -29,7 +29,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Common functions for groff writers (man, ms). -} -module Text.Pandoc.Writers.Groff ( +module Text.Pandoc.Writers.Roff ( WriterState(..) , defaultWriterState , MS @@ -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 (standardEscapes, +import Text.Pandoc.RoffChar (standardEscapes, characterCodes, combiningAccents) data WriterState = WriterState { stHasInlineMath :: Bool |