aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Templates.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-07-20 14:41:44 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-07-20 14:41:44 -0700
commit5085962c28aa35394c567da360fd065dc3bbd0e0 (patch)
treea8c0dd5efb248d7c0d37effc0bf85fb3d2016afb /src/Text/Pandoc/Templates.hs
parenta4c28ead79d0490de992fe9a642afdefee6080f4 (diff)
downloadpandoc-5085962c28aa35394c567da360fd065dc3bbd0e0.tar.gz
Text.Pandoc.Parsing: Export all Parsec functions used in pandoc code.
No other module directly imports Parsec. This will make it easier to change the parsing backend in the future, if we want to.
Diffstat (limited to 'src/Text/Pandoc/Templates.hs')
-rw-r--r--src/Text/Pandoc/Templates.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Templates.hs b/src/Text/Pandoc/Templates.hs
index bd4cdcd86..c4e225810 100644
--- a/src/Text/Pandoc/Templates.hs
+++ b/src/Text/Pandoc/Templates.hs
@@ -68,7 +68,7 @@ module Text.Pandoc.Templates ( renderTemplate
, TemplateTarget
, getDefaultTemplate ) where
-import Text.Parsec
+import Text.Pandoc.Parsing
import Control.Monad (liftM, when, forM, mzero)
import System.FilePath
import Data.List (intercalate, intersperse)