blaze-html 0.9.1.0 → 0.9.1.1
raw patch · 4 files changed
+42/−1 lines, 4 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Text.Blaze.Html5: u :: Html -> Html
+ Text.Blaze.XHtml5: u :: Html -> Html
Files
- CHANGELOG +3/−0
- blaze-html.cabal +1/−1
- src/Text/Blaze/Html5.hs +19/−0
- src/Text/Blaze/XHtml5.hs +19/−0
CHANGELOG view
@@ -1,5 +1,8 @@ # Changelog +- 0.9.1.1 (2018-06-12)+ * Fix generated source code on Hackage+ - 0.9.1.0 * Add `u` element to HTML5 * Add `role` attribute to HTML5
blaze-html.cabal view
@@ -1,5 +1,5 @@ Name: blaze-html-Version: 0.9.1.0+Version: 0.9.1.1 Homepage: http://jaspervdj.be/blaze Bug-Reports: http://github.com/jaspervdj/blaze-html/issues License: BSD3
src/Text/Blaze/Html5.hs view
@@ -111,6 +111,7 @@ , title , tr , track+ , u , ul , var , video@@ -2002,6 +2003,24 @@ track :: Html -- ^ Resulting HTML. track = Leaf "track" "<track" ">" () {-# INLINE track #-}++-- WARNING: The next block of code was automatically generated by+-- src/Util/GenerateHtmlCombinators.hs:199+--+-- | Combinator for the @\<u>@ element.+--+-- Example:+--+-- > u $ span $ toHtml "foo"+--+-- Result:+--+-- > <u><span>foo</span></u>+--+u :: Html -- ^ Inner HTML.+ -> Html -- ^ Resulting HTML.+u = Parent "u" "<u" "</u>"+{-# INLINE u #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199
src/Text/Blaze/XHtml5.hs view
@@ -111,6 +111,7 @@ , title , tr , track+ , u , ul , var , video@@ -2002,6 +2003,24 @@ track :: Html -- ^ Resulting HTML. track = Leaf "track" "<track" " />" () {-# INLINE track #-}++-- WARNING: The next block of code was automatically generated by+-- src/Util/GenerateHtmlCombinators.hs:199+--+-- | Combinator for the @\<u>@ element.+--+-- Example:+--+-- > u $ span $ toHtml "foo"+--+-- Result:+--+-- > <u><span>foo</span></u>+--+u :: Html -- ^ Inner HTML.+ -> Html -- ^ Resulting HTML.+u = Parent "u" "<u" "</u>"+{-# INLINE u #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199