aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-10-29 15:00:49 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-10-29 15:00:49 -0700
commit6a1476e7e26b603bb69112a2666c47ac883ee36f (patch)
treecf6c21b8a31fb8675cce3c988f89a639b8573835
parente87085016f9a0c26eb3016d941ecfa7043165a93 (diff)
downloadpandoc-6a1476e7e26b603bb69112a2666c47ac883ee36f.tar.gz
Export all of Text.Pandoc.Class from Text.Pandoc.
-rw-r--r--src/Text/Pandoc.hs6
-rw-r--r--src/Text/Pandoc/Class.hs1
-rw-r--r--test/Tests/Readers/Muse.hs1
-rw-r--r--test/Tests/Readers/Txt2Tags.hs1
4 files changed, 1 insertions, 8 deletions
diff --git a/src/Text/Pandoc.hs b/src/Text/Pandoc.hs
index 9fa5f098d..0da2a925c 100644
--- a/src/Text/Pandoc.hs
+++ b/src/Text/Pandoc.hs
@@ -65,11 +65,7 @@ module Text.Pandoc
-- * Logging
, module Text.Pandoc.Logging
-- * Typeclass
- , PandocMonad
- , runIO
- , runPure
- , runIOorExplode
- , setVerbosity
+ , module Text.Pandoc.Class
-- * Error handling
, module Text.Pandoc.Error
-- * Readers: converting /to/ Pandoc format
diff --git a/src/Text/Pandoc/Class.hs b/src/Text/Pandoc/Class.hs
index 2b8b1c090..19897e53f 100644
--- a/src/Text/Pandoc/Class.hs
+++ b/src/Text/Pandoc/Class.hs
@@ -93,7 +93,6 @@ module Text.Pandoc.Class ( PandocMonad(..)
, setTranslations
, translateTerm
, Translations
- , Term(..)
) where
import Prelude hiding (readFile)
diff --git a/test/Tests/Readers/Muse.hs b/test/Tests/Readers/Muse.hs
index 158f5788e..1469b01a0 100644
--- a/test/Tests/Readers/Muse.hs
+++ b/test/Tests/Readers/Muse.hs
@@ -9,7 +9,6 @@ import Tests.Helpers
import Text.Pandoc
import Text.Pandoc.Arbitrary ()
import Text.Pandoc.Builder
-import Text.Pandoc.Class
muse :: Text -> Pandoc
muse = purely $ \s -> do
diff --git a/test/Tests/Readers/Txt2Tags.hs b/test/Tests/Readers/Txt2Tags.hs
index e3c4d0643..28f647de4 100644
--- a/test/Tests/Readers/Txt2Tags.hs
+++ b/test/Tests/Readers/Txt2Tags.hs
@@ -9,7 +9,6 @@ import Tests.Helpers
import Text.Pandoc
import Text.Pandoc.Arbitrary ()
import Text.Pandoc.Builder
-import Text.Pandoc.Class
import Text.Pandoc.Shared (underlineSpan)
t2t :: Text -> Pandoc