summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-03-26 11:38:11 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-03-26 11:38:50 -0700
commitba1e74dcd7a3db8af3653f59416fc2740730b320 (patch)
treec34167975f9b4b71e68357222280000ec422be45 /src/Text/Pandoc/Writers
parent40f0a6dd66514168fe352e786b2e918a91fa98e3 (diff)
Removed blaze_html_0_5 flag, require blaze-html >= 0.5.
Reason: < 0.5 does not provide a monoid instance for Attribute, which is now needed by the HTML writer. Closes #803.
Diffstat (limited to 'src/Text/Pandoc/Writers')
-rw-r--r--src/Text/Pandoc/Writers/HTML.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs
index cdd34deae..0e1d35887 100644
--- a/src/Text/Pandoc/Writers/HTML.hs
+++ b/src/Text/Pandoc/Writers/HTML.hs
@@ -47,12 +47,8 @@ import Data.List ( isPrefixOf, intersperse )
import Data.String ( fromString )
import Data.Maybe ( catMaybes )
import Control.Monad.State
-#if MIN_VERSION_blaze_html(0,5,0)
import Text.Blaze.Html hiding(contents)
import Text.Blaze.Internal(preEscapedString)
-#else
-import Text.Blaze
-#endif
#if MIN_VERSION_blaze_html(0,5,1)
import qualified Text.Blaze.XHtml5 as H5
#else