aboutsummaryrefslogtreecommitdiff
path: root/Text/Pandoc/Writers
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-08-02 17:22:55 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-08-02 17:22:55 +0000
commit1e2f2bc4f63a0cacfc7eda26a6cc0887eb1c8de2 (patch)
tree1f8e17959f252d20c2689d469106ac62054a427b /Text/Pandoc/Writers
parent6a0004acba8df20fb5132874feb0b8b7457eea58 (diff)
downloadpandoc-1e2f2bc4f63a0cacfc7eda26a6cc0887eb1c8de2.tar.gz
Improved template handling:
+ Split template haskell functions into new module, Text.Pandoc.TH + Distinguish contentsOf and binaryContentsOf; the former uses text mode in Windows, while the latter uses binary mode git-svn-id: https://pandoc.googlecode.com/svn/trunk@1368 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Text/Pandoc/Writers')
-rw-r--r--Text/Pandoc/Writers/S5.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Text/Pandoc/Writers/S5.hs b/Text/Pandoc/Writers/S5.hs
index a00182ef0..59e1a40ab 100644
--- a/Text/Pandoc/Writers/S5.hs
+++ b/Text/Pandoc/Writers/S5.hs
@@ -40,7 +40,8 @@ module Text.Pandoc.Writers.S5 (
writeS5String,
insertS5Structure
) where
-import Text.Pandoc.Shared ( joinWithSep, WriterOptions, contentsOf )
+import Text.Pandoc.Shared ( joinWithSep, WriterOptions )
+import Text.Pandoc.TH ( contentsOf )
import Text.Pandoc.Writers.HTML ( writeHtml, writeHtmlString )
import Text.Pandoc.Definition
import Text.XHtml.Strict