blaze-html 0.4.2.1 → 0.4.2.2
raw patch · 2 files changed
+8/−8 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Text/Blaze.hs +7/−7
- blaze-html.cabal +1/−1
Text/Blaze.hs view
@@ -19,13 +19,13 @@ -- -- > page1 :: Html -- > page1 = html $ do--- > head $ do--- > title "Introduction page."--- > link ! rel "stylesheet" ! type_ "text/css" ! href "screen.css"--- > body $ do--- > div ! id "header" $ "Syntax"--- > p "This is an example of BlazeHtml syntax."--- > ul $ forM_ [1, 2, 3] (li . string . show)+-- > head $ do+-- > title "Introduction page."+-- > link ! rel "stylesheet" ! type_ "text/css" ! href "screen.css"+-- > body $ do+-- > div ! id "header" $ "Syntax"+-- > p "This is an example of BlazeHtml syntax."+-- > ul $ forM_ [1, 2, 3] (li . string . show) -- -- The resulting HTML can now be extracted using: --
blaze-html.cabal view
@@ -1,5 +1,5 @@ Name: blaze-html-Version: 0.4.2.1+Version: 0.4.2.2 Homepage: http://jaspervdj.be/blaze Bug-Reports: http://github.com/jaspervdj/blaze-html/issues License: BSD3