diff options
| author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2012-04-23 06:17:47 -0700 |
|---|---|---|
| committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2012-04-23 06:17:47 -0700 |
| commit | 0953d9a842a9127d18f43a60cccdbde0be1e42dc (patch) | |
| tree | ff2c4a1e431a255b152c77557151bb3989569113 /src/Hakyll/Web | |
| parent | 763c9ab213bf7d8be883ecde3175ca616e82daac (diff) | |
| parent | fe1703b9c39a2536c5f69dcb7138f99c52d6b186 (diff) | |
| download | hakyll-0953d9a842a9127d18f43a60cccdbde0be1e42dc.tar.gz | |
Merge pull request #64 from markwright/master
changes for blaze-html 0.5
Diffstat (limited to 'src/Hakyll/Web')
| -rw-r--r-- | src/Hakyll/Web/Blaze.hs | 3 | ||||
| -rw-r--r-- | src/Hakyll/Web/Tags.hs | 4 | ||||
| -rw-r--r-- | src/Hakyll/Web/Util/Html.hs | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/src/Hakyll/Web/Blaze.hs b/src/Hakyll/Web/Blaze.hs index f79f036..8a22585 100644 --- a/src/Hakyll/Web/Blaze.hs +++ b/src/Hakyll/Web/Blaze.hs @@ -7,7 +7,8 @@ module Hakyll.Web.Blaze , getBodyHtml' ) where -import Text.Blaze (Html, toHtml, preEscapedString) +import Text.Blaze.Html (Html, toHtml) +import Text.Blaze.Internal (preEscapedString) import Hakyll.Web.Page import Hakyll.Web.Page.Metadata diff --git a/src/Hakyll/Web/Tags.hs b/src/Hakyll/Web/Tags.hs index 7c9abbb..62f3899 100644 --- a/src/Hakyll/Web/Tags.hs +++ b/src/Hakyll/Web/Tags.hs @@ -52,8 +52,8 @@ import Data.Monoid (mconcat) import Data.Typeable (Typeable) import Data.Binary (Binary, get, put) -import Text.Blaze.Renderer.String (renderHtml) -import Text.Blaze ((!), toHtml, toValue) +import Text.Blaze.Html.Renderer.String (renderHtml) +import Text.Blaze.Html ((!), toHtml, toValue) import qualified Text.Blaze.Html5 as H import qualified Text.Blaze.Html5.Attributes as A diff --git a/src/Hakyll/Web/Util/Html.hs b/src/Hakyll/Web/Util/Html.hs index 2a42608..a413f84 100644 --- a/src/Hakyll/Web/Util/Html.hs +++ b/src/Hakyll/Web/Util/Html.hs @@ -5,8 +5,8 @@ module Hakyll.Web.Util.Html , escapeHtml ) where -import Text.Blaze (toHtml) -import Text.Blaze.Renderer.String (renderHtml) +import Text.Blaze.Html (toHtml) +import Text.Blaze.Html.Renderer.String (renderHtml) -- | Strip all HTML tags from a string -- |
