diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-12-10 23:14:43 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-01-25 17:07:41 +0100 |
commit | a964b1447554d9f0074723db52faf086984d0c28 (patch) | |
tree | 50edffcc1241d9f74d4ecfd26674172c8a558dd6 | |
parent | 16b1b117dfb59b2502fffda1c3ceb80667ba8e5f (diff) | |
download | pandoc-a964b1447554d9f0074723db52faf086984d0c28.tar.gz |
Text.Pandoc: limit exports from Text.Pandoc.Class.
-rw-r--r-- | src/Text/Pandoc.hs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Text/Pandoc.hs b/src/Text/Pandoc.hs index e5fc665a7..b94d05718 100644 --- a/src/Text/Pandoc.hs +++ b/src/Text/Pandoc.hs @@ -59,7 +59,10 @@ module Text.Pandoc -- * Options , module Text.Pandoc.Options -- * Typeclass - , module Text.Pandoc.Class + , PandocMonad + , runIO + , runPure + , runIOorExplode -- * Error handling , module Text.Pandoc.Error -- * Lists of readers and writers @@ -177,7 +180,7 @@ import Text.Pandoc.Templates import Text.Pandoc.Options import Text.Pandoc.Shared (safeRead, mapLeft, pandocVersion) import Text.Pandoc.Error -import Text.Pandoc.Class (PandocMonad, runIOorExplode) +import Text.Pandoc.Class import Data.Aeson import qualified Data.ByteString.Lazy as BL import Data.List (intercalate) |