diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-07-20 14:41:44 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-07-20 14:41:44 -0700 |
commit | 5085962c28aa35394c567da360fd065dc3bbd0e0 (patch) | |
tree | a8c0dd5efb248d7c0d37effc0bf85fb3d2016afb /src/Text/Pandoc/Templates.hs | |
parent | a4c28ead79d0490de992fe9a642afdefee6080f4 (diff) | |
download | pandoc-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.hs | 2 |
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) |