diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-22 08:32:33 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-01-22 08:32:33 -0800 |
commit | 294df9deedaa17ba019e1dd57221aa2062cb6805 (patch) | |
tree | c3b3fe4ac49ffa4c775b60db64d79da569503d56 /src | |
parent | d1e3bc7df4585eba92a2e4975ecac07b511e4b00 (diff) | |
download | pandoc-294df9deedaa17ba019e1dd57221aa2062cb6805.tar.gz |
Fixed MIN_VERSION - need to sub _ for - in blaze-html.
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Writers/EPUB.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/EPUB.hs b/src/Text/Pandoc/Writers/EPUB.hs index 802568664..38989807a 100644 --- a/src/Text/Pandoc/Writers/EPUB.hs +++ b/src/Text/Pandoc/Writers/EPUB.hs @@ -56,7 +56,7 @@ 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) +#ifdef MIN_VERSION_blaze_html(0,5,0) import Text.Blaze.Html.Renderer.Utf8 (renderHtml) #else import Text.Blaze.Renderer.Utf8 (renderHtml) |