aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Text/BlazeT/Html.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/BlazeT/Html.hs')
-rw-r--r--src/Text/BlazeT/Html.hs9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Text/BlazeT/Html.hs b/src/Text/BlazeT/Html.hs
index d71e90a..de9e471 100644
--- a/src/Text/BlazeT/Html.hs
+++ b/src/Text/BlazeT/Html.hs
@@ -1,4 +1,5 @@
1{-# LANGUAGE RankNTypes #-} 1{-# LANGUAGE MonoLocalBinds #-}
2{-# LANGUAGE RankNTypes #-}
2module Text.BlazeT.Html 3module Text.BlazeT.Html
3 ( 4 (
4 module Text.BlazeT 5 module Text.BlazeT
@@ -12,16 +13,16 @@ module Text.BlazeT.Html
12 , preEscapedToHtml 13 , preEscapedToHtml
13 ) where 14 ) where
14 15
15import Text.BlazeT 16import Text.BlazeT
16 17
17type HtmlT = MarkupT 18type HtmlT = MarkupT
18type HtmlM a = MarkupM a 19type HtmlM a = MarkupM a
19type Html = Markup 20type Html = Markup
20 21
21toHtml ::(ToMarkup a) => a -> Html 22toHtml :: (ToMarkup a) => a -> Html
22toHtml = toMarkup 23toHtml = toMarkup
23 24
24preEscapedToHtml ::(ToMarkup a) => a -> Html 25preEscapedToHtml :: (ToMarkup a) => a -> Html
25preEscapedToHtml = preEscapedToMarkup 26preEscapedToHtml = preEscapedToMarkup
26 27
27-- $descr1 The following is an adaptation of all "Text.Blaze.Html" 28-- $descr1 The following is an adaptation of all "Text.Blaze.Html"