summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Petersen <juhpetersen@gmail.com>2013-01-22 10:27:34 +0900
committerJens Petersen <juhpetersen@gmail.com>2013-01-22 10:27:34 +0900
commit88d0ca8ea70b94747e46c05c060454e604cc6363 (patch)
treee6eb1d85e68607dbfe6ef3589bb1b1830cd1a3fa
parentf468db92778cd693e9d4964f0d8a725f2e04f2fb (diff)
EPUB: condition Blaze Utf8 module name import on blaze-html version
blaze-html/blaze-markup-0.5 has Text.Blaze.Html.Renderer.Utf8 whereas blaze-html-0.4 has Text.Blaze.Renderer.Utf8. So this needs to be conditional on the version for pandoc still be with blaze-html-0.4.x
-rw-r--r--src/Text/Pandoc/Writers/EPUB.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Writers/EPUB.hs b/src/Text/Pandoc/Writers/EPUB.hs
index 4155cca05..802568664 100644
--- a/src/Text/Pandoc/Writers/EPUB.hs
+++ b/src/Text/Pandoc/Writers/EPUB.hs
@@ -56,7 +56,11 @@ import Network.URI ( unEscapeString )
import Text.Pandoc.MIME (getMimeType)
import Prelude hiding (catch)
import Control.Exception (catch, SomeException)
+#ifdef MIN_VERSION_blaze-html(0,5,0)
import Text.Blaze.Html.Renderer.Utf8 (renderHtml)
+#else
+import Text.Blaze.Renderer.Utf8 (renderHtml)
+#endif
-- | Produce an EPUB file from a Pandoc document.
writeEPUB :: WriterOptions -- ^ Writer options