diff --git a/src/Text/Blaze/Html5/Attributes.hs b/src/Text/Blaze/Html5/Attributes.hs index a05e349..4d7e2ff 100644 --- a/src/Text/Blaze/Html5/Attributes.hs +++ b/src/Text/Blaze/Html5/Attributes.hs @@ -141,6 +141,7 @@ module Text.Blaze.Html5.Attributes , pattern , ping , placeholder + , poster , preload , property , pubdate @@ -2617,6 +2618,24 @@ placeholder :: AttributeValue -- ^ Attribute value. placeholder = attribute "placeholder" " placeholder=\"" {-# INLINE placeholder #-} +-- WARNING: The next block of code was automatically generated by +-- src/Util/GenerateHtmlCombinators.hs:250 +-- +-- | Combinator for the @poster@ attribute. +-- +-- Example: +-- +-- > div ! poster "bar" $ "Hello." +-- +-- Result: +-- +-- >
Hello.
+-- +poster :: AttributeValue -- ^ Attribute value. + -> Attribute -- ^ Resulting attribute. +poster = attribute "poster" " poster=\"" +{-# INLINE poster #-} + -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:250 -- diff --git a/src/Text/Blaze/XHtml5/Attributes.hs b/src/Text/Blaze/XHtml5/Attributes.hs index e80e3d2..3c18ae0 100644 --- a/src/Text/Blaze/XHtml5/Attributes.hs +++ b/src/Text/Blaze/XHtml5/Attributes.hs @@ -141,6 +141,7 @@ module Text.Blaze.XHtml5.Attributes , pattern , ping , placeholder + , poster , preload , property , pubdate @@ -2617,6 +2618,24 @@ placeholder :: AttributeValue -- ^ Attribute value. placeholder = attribute "placeholder" " placeholder=\"" {-# INLINE placeholder #-} +-- WARNING: The next block of code was automatically generated by +-- src/Util/GenerateHtmlCombinators.hs:250 +-- +-- | Combinator for the @poster@ attribute. +-- +-- Example: +-- +-- > div ! poster "bar" $ "Hello." +-- +-- Result: +-- +-- >
Hello.
+-- +poster :: AttributeValue -- ^ Attribute value. + -> Attribute -- ^ Resulting attribute. +poster = attribute "poster" " poster=\"" +{-# INLINE poster #-} + -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:250 -- diff --git a/src/Util/GenerateHtmlCombinators/Html5.hs b/src/Util/GenerateHtmlCombinators/Html5.hs index 9507ba5..4c6073b 100644 --- a/src/Util/GenerateHtmlCombinators/Html5.hs +++ b/src/Util/GenerateHtmlCombinators/Html5.hs @@ -265,6 +265,7 @@ attributes = , "pattern" , "ping" , "placeholder" + , "poster" , "preload" , "property" , "pubdate"