blaze-html-0.9.1.1/src/ 0000755 0000000 0000000 00000000000 12677506766 012722 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/ 0000755 0000000 0000000 00000000000 12677506766 013646 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/ 0000755 0000000 0000000 00000000000 12677507315 014672 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/Html/ 0000755 0000000 0000000 00000000000 12677506766 015607 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/Html/Renderer/ 0000755 0000000 0000000 00000000000 12677506766 017355 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/Html4/ 0000755 0000000 0000000 00000000000 12677507315 015662 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/Html4/FrameSet/ 0000755 0000000 0000000 00000000000 12677507315 017370 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/Html4/Strict/ 0000755 0000000 0000000 00000000000 12677507315 017132 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/Html4/Transitional/ 0000755 0000000 0000000 00000000000 12677507315 020331 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/Html5/ 0000755 0000000 0000000 00000000000 12677507315 015663 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/XHtml1/ 0000755 0000000 0000000 00000000000 12677507315 016007 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/XHtml1/FrameSet/ 0000755 0000000 0000000 00000000000 12677507315 017515 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/XHtml1/Strict/ 0000755 0000000 0000000 00000000000 12677507315 017257 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/XHtml1/Transitional/ 0000755 0000000 0000000 00000000000 12677507315 020456 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/XHtml5/ 0000755 0000000 0000000 00000000000 12677507315 016013 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Util/ 0000755 0000000 0000000 00000000000 13307204135 013607 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/tests/ 0000755 0000000 0000000 00000000000 12677506766 013275 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/tests/Text/ 0000755 0000000 0000000 00000000000 12677506766 014221 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/tests/Text/Blaze/ 0000755 0000000 0000000 00000000000 12677506766 015256 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/tests/Text/Blaze/Html/ 0000755 0000000 0000000 00000000000 13307204135 016132 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/tests/Text/Blaze/Html/Tests/ 0000755 0000000 0000000 00000000000 12677506766 017264 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/tests/Util/ 0000755 0000000 0000000 00000000000 12677506766 014212 5 ustar 00 0000000 0000000 blaze-html-0.9.1.1/src/Text/Blaze/Html.hs 0000644 0000000 0000000 00000000431 12677506766 016141 0 ustar 00 0000000 0000000 module Text.Blaze.Html ( module Text.Blaze , Html , toHtml , preEscapedToHtml ) where import Text.Blaze type Html = Markup toHtml :: ToMarkup a => a -> Html toHtml = toMarkup preEscapedToHtml :: ToMarkup a => a -> Html preEscapedToHtml = preEscapedToMarkup blaze-html-0.9.1.1/src/Text/Blaze/Html/Renderer/Pretty.hs 0000644 0000000 0000000 00000000314 12677506766 021176 0 ustar 00 0000000 0000000 module Text.Blaze.Html.Renderer.Pretty ( renderHtml ) where import Text.Blaze.Html (Html) import Text.Blaze.Renderer.Pretty (renderMarkup) renderHtml :: Html -> String renderHtml = renderMarkup blaze-html-0.9.1.1/src/Text/Blaze/Html/Renderer/String.hs 0000644 0000000 0000000 00000000314 12677506766 021155 0 ustar 00 0000000 0000000 module Text.Blaze.Html.Renderer.String ( renderHtml ) where import Text.Blaze.Html (Html) import Text.Blaze.Renderer.String (renderMarkup) renderHtml :: Html -> String renderHtml = renderMarkup blaze-html-0.9.1.1/src/Text/Blaze/Html/Renderer/Text.hs 0000644 0000000 0000000 00000001301 12677506766 020630 0 ustar 00 0000000 0000000 module Text.Blaze.Html.Renderer.Text ( renderHtmlBuilder , renderHtmlBuilderWith , renderHtml , renderHtmlWith ) where import Data.ByteString (ByteString) import Data.Text (Text) import Data.Text.Lazy.Builder (Builder) import Text.Blaze.Html (Html) import qualified Data.Text.Lazy as TL import qualified Text.Blaze.Renderer.Text as R renderHtmlBuilder :: Html -> Builder renderHtmlBuilder = R.renderMarkupBuilder renderHtmlBuilderWith :: (ByteString -> Text) -> Html -> Builder renderHtmlBuilderWith = R.renderMarkupBuilderWith renderHtml :: Html -> TL.Text renderHtml = R.renderMarkup renderHtmlWith :: (ByteString -> Text) -> Html -> TL.Text renderHtmlWith = R.renderMarkupWith blaze-html-0.9.1.1/src/Text/Blaze/Html/Renderer/Utf8.hs 0000644 0000000 0000000 00000001116 12677506766 020536 0 ustar 00 0000000 0000000 module Text.Blaze.Html.Renderer.Utf8 ( renderHtmlBuilder , renderHtml , renderHtmlToByteStringIO ) where import Blaze.ByteString.Builder (Builder) import Data.ByteString (ByteString) import Text.Blaze.Html (Html) import qualified Data.ByteString.Lazy as BL import qualified Text.Blaze.Renderer.Utf8 as R renderHtmlBuilder :: Html -> Builder renderHtmlBuilder = R.renderMarkupBuilder renderHtml :: Html -> BL.ByteString renderHtml = R.renderMarkup renderHtmlToByteStringIO :: (ByteString -> IO ()) -> Html -> IO () renderHtmlToByteStringIO = R.renderMarkupToByteStringIO blaze-html-0.9.1.1/src/Text/Blaze/Html4/FrameSet.hs 0000644 0000000 0000000 00000106706 13307752376 017736 0 ustar 00 0000000 0000000 -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:69 -- {-# LANGUAGE OverloadedStrings #-} -- | This module exports HTML combinators used to create documents. -- module Text.Blaze.Html4.FrameSet ( module Text.Blaze.Html , docType , docTypeHtml , a , abbr , acronym , address , applet , area , b , basefont , bdo , big , blockquote , body , br , button , caption , center , cite , code , col , colgroup , dd , del , dfn , dir , div , dl , dt , em , fieldset , font , form , frame , frameset , h1 , h2 , h3 , h4 , h5 , h6 , head , hr , html , i , iframe , img , input , ins , isindex , kbd , label , legend , li , link , map , menu , meta , noframes , noscript , object , ol , optgroup , option , p , param , pre , q , s , samp , script , select , small , span , strong , style , sub , sup , table , tbody , td , textarea , tfoot , th , thead , title , tr , tt , u , ul , var ) where -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:77 -- import Prelude ((>>), (.)) import Text.Blaze import Text.Blaze.Internal import Text.Blaze.Html -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:156 -- -- | Combinator for the document type. This should be placed at the top -- of every HTML page. -- -- Example: -- -- > docType -- -- Result: -- -- > "http://www.w3.org/TR/html4/frameset.dtd"> -- docType :: Html -- ^ The document type HTML. docType = preEscapedText "\n" {-# INLINE docType #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:177 -- -- | Combinator for the @\@ element. This combinator will also -- insert the correct doctype. -- -- Example: -- -- > docTypeHtml $ span $ toHtml "foo" -- -- Result: -- -- > "http://www.w3.org/TR/html4/frameset.dtd"> -- > foo -- docTypeHtml :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. docTypeHtml inner = docType >> html inner {-# INLINE docTypeHtml #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > a $ span $ toHtml "foo" -- -- Result: -- -- > foo -- a :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. a = Parent "a" "" {-# INLINE a #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > abbr $ span $ toHtml "foo" -- -- Result: -- -- > foo -- abbr :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. abbr = Parent "abbr" "" {-# INLINE abbr #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > acronym $ span $ toHtml "foo" -- -- Result: -- -- > foo -- acronym :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. acronym = Parent "acronym" "" {-# INLINE acronym #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > address $ span $ toHtml "foo" -- -- Result: -- -- > foo -- address :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. address = Parent "address" "" {-# INLINE address #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > applet $ span $ toHtml "foo" -- -- Result: -- -- > foo -- applet :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. applet = Parent "applet" "" {-# INLINE applet #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > area -- -- Result: -- -- > -- area :: Html -- ^ Resulting HTML. area = Leaf "area" "" () {-# INLINE area #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > b $ span $ toHtml "foo" -- -- Result: -- -- > foo -- b :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. b = Parent "b" "" {-# INLINE b #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > basefont -- -- Result: -- -- > -- basefont :: Html -- ^ Resulting HTML. basefont = Leaf "basefont" "" () {-# INLINE basefont #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > bdo $ span $ toHtml "foo" -- -- Result: -- -- > foo -- bdo :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. bdo = Parent "bdo" "" {-# INLINE bdo #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > big $ span $ toHtml "foo" -- -- Result: -- -- > foo -- big :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. big = Parent "big" "" {-# INLINE big #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > blockquote $ span $ toHtml "foo" -- -- Result: -- -- > foo -- blockquote :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. blockquote = Parent "blockquote" "" {-# INLINE blockquote #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > body $ span $ toHtml "foo" -- -- Result: -- -- > foo -- body :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. body = Parent "body" "" {-# INLINE body #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > br -- -- Result: -- -- > -- br :: Html -- ^ Resulting HTML. br = Leaf "br" "" () {-# INLINE br #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > button $ span $ toHtml "foo" -- -- Result: -- -- > foo -- button :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. button = Parent "button" "" {-# INLINE button #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > caption $ span $ toHtml "foo" -- -- Result: -- -- > foo -- caption :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. caption = Parent "caption" "" {-# INLINE caption #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > center $ span $ toHtml "foo" -- -- Result: -- -- > foo -- center :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. center = Parent "center" "" {-# INLINE center #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > cite $ span $ toHtml "foo" -- -- Result: -- -- > foo -- cite :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. cite = Parent "cite" "" {-# INLINE cite #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > code $ span $ toHtml "foo" -- -- Result: -- -- > foo -- code :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. code = Parent "code" "" {-# INLINE code #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > col -- -- Result: -- -- > -- col :: Html -- ^ Resulting HTML. col = Leaf "col" "" () {-# INLINE col #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > colgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- colgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. colgroup = Parent "colgroup" "" {-# INLINE colgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dd = Parent "dd" "" {-# INLINE dd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > del $ span $ toHtml "foo" -- -- Result: -- -- > foo -- del :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. del = Parent "del" "" {-# INLINE del #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dfn $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dfn :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dfn = Parent "dfn" "" {-# INLINE dfn #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dir $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dir :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dir = Parent "dir" "" {-# INLINE dir #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > div $ span $ toHtml "foo" -- -- Result: -- -- > foo -- div :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. div = Parent "div" "" {-# INLINE div #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dl $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dl :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dl = Parent "dl" "" {-# INLINE dl #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dt $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dt :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dt = Parent "dt" "" {-# INLINE dt #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > em $ span $ toHtml "foo" -- -- Result: -- -- > foo -- em :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. em = Parent "em" "" {-# INLINE em #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > fieldset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- fieldset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. fieldset = Parent "fieldset" "" {-# INLINE fieldset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > font $ span $ toHtml "foo" -- -- Result: -- -- > foo -- font :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. font = Parent "font" "" {-# INLINE font #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > form $ span $ toHtml "foo" -- -- Result: -- -- > foo -- form :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. form = Parent "form" "" {-# INLINE form #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frame -- -- Result: -- -- > -- frame :: Html -- ^ Resulting HTML. frame = Leaf "frame" "" () {-# INLINE frame #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frameset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- frameset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. frameset = Parent "frameset" "" {-# INLINE frameset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h1 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h1 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h1 = Parent "h1" "" {-# INLINE h1 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h2 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h2 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h2 = Parent "h2" "" {-# INLINE h2 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h3 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h3 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h3 = Parent "h3" "" {-# INLINE h3 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h4 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h4 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h4 = Parent "h4" "" {-# INLINE h4 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h5 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h5 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h5 = Parent "h5" "" {-# INLINE h5 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h6 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h6 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h6 = Parent "h6" "" {-# INLINE h6 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > head $ span $ toHtml "foo" -- -- Result: -- -- > foo -- head :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. head = Parent "head" "" {-# INLINE head #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > hr -- -- Result: -- -- > -- hr :: Html -- ^ Resulting HTML. hr = Leaf "hr" "" () {-# INLINE hr #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > html $ span $ toHtml "foo" -- -- Result: -- -- > foo -- html :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. html = Parent "html" "" {-# INLINE html #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > i $ span $ toHtml "foo" -- -- Result: -- -- > foo -- i :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. i = Parent "i" "" {-# INLINE i #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > iframe $ span $ toHtml "foo" -- -- Result: -- -- > foo -- iframe :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. iframe = Parent "iframe" "" {-# INLINE iframe #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > img -- -- Result: -- -- > -- img :: Html -- ^ Resulting HTML. img = Leaf "img" "" () {-# INLINE img #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > input -- -- Result: -- -- > -- input :: Html -- ^ Resulting HTML. input = Leaf "input" "" () {-# INLINE input #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ins $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ins :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ins = Parent "ins" "" {-# INLINE ins #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > isindex $ span $ toHtml "foo" -- -- Result: -- -- > foo -- isindex :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. isindex = Parent "isindex" "" {-# INLINE isindex #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > kbd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- kbd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. kbd = Parent "kbd" "" {-# INLINE kbd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > label $ span $ toHtml "foo" -- -- Result: -- -- > foo -- label :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. label = Parent "label" "" {-# INLINE label #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > legend $ span $ toHtml "foo" -- -- Result: -- -- > foo -- legend :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. legend = Parent "legend" "" {-# INLINE legend #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > li $ span $ toHtml "foo" -- -- Result: -- -- > foo -- li :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. li = Parent "li" "" {-# INLINE li #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > link -- -- Result: -- -- > -- link :: Html -- ^ Resulting HTML. link = Leaf "link" "" () {-# INLINE link #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > map $ span $ toHtml "foo" -- -- Result: -- -- > foo -- map :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. map = Parent "map" "" {-# INLINE map #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > menu $ span $ toHtml "foo" -- -- Result: -- -- > foo -- menu :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. menu = Parent "menu" "" {-# INLINE menu #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > meta -- -- Result: -- -- > -- meta :: Html -- ^ Resulting HTML. meta = Leaf "meta" "" () {-# INLINE meta #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noframes $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noframes :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noframes = Parent "noframes" "" {-# INLINE noframes #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noscript $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noscript :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noscript = Parent "noscript" "" {-# INLINE noscript #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > object $ span $ toHtml "foo" -- -- Result: -- -- > foo -- object :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. object = Parent "object" "" {-# INLINE object #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ol $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ol :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ol = Parent "ol" "" {-# INLINE ol #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > optgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- optgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. optgroup = Parent "optgroup" "" {-# INLINE optgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > option $ span $ toHtml "foo" -- -- Result: -- -- > foo -- option :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. option = Parent "option" "" {-# INLINE option #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > p $ span $ toHtml "foo" -- -- Result: -- -- > foo -- p :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. p = Parent "p" "" {-# INLINE p #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > param -- -- Result: -- -- > -- param :: Html -- ^ Resulting HTML. param = Leaf "param" "" () {-# INLINE param #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > pre $ span $ toHtml "foo" -- -- Result: -- -- > foo -- pre :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. pre = Parent "pre" "" {-# INLINE pre #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > q $ span $ toHtml "foo" -- -- Result: -- -- > foo -- q :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. q = Parent "q" "" {-# INLINE q #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > s $ span $ toHtml "foo" -- -- Result: -- -- > foo -- s :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. s = Parent "s" "" {-# INLINE s #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > samp $ span $ toHtml "foo" -- -- Result: -- -- > foo -- samp :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. samp = Parent "samp" "" {-# INLINE samp #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\ -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" "
@ element. -- -- Example: -- -- > blockquote $ span $ toHtml "foo" -- -- Result: -- -- > foo -- blockquote :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. blockquote = Parent "blockquote" "" {-# INLINE blockquote #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > body $ span $ toHtml "foo" -- -- Result: -- -- > foo -- body :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. body = Parent "body" "" {-# INLINE body #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > br -- -- Result: -- -- > -- br :: Html -- ^ Resulting HTML. br = Leaf "br" "" () {-# INLINE br #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > button $ span $ toHtml "foo" -- -- Result: -- -- > foo -- button :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. button = Parent "button" "" {-# INLINE button #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > caption $ span $ toHtml "foo" -- -- Result: -- -- > foo -- caption :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. caption = Parent "caption" "" {-# INLINE caption #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > center $ span $ toHtml "foo" -- -- Result: -- -- > foo -- center :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. center = Parent "center" "" {-# INLINE center #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > cite $ span $ toHtml "foo" -- -- Result: -- -- > foo -- cite :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. cite = Parent "cite" "" {-# INLINE cite #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > code $ span $ toHtml "foo" -- -- Result: -- -- > foo -- code :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. code = Parent "code" "" {-# INLINE code #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > col -- -- Result: -- -- > -- col :: Html -- ^ Resulting HTML. col = Leaf "col" "" () {-# INLINE col #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > colgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- colgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. colgroup = Parent "colgroup" "" {-# INLINE colgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dd = Parent "dd" "" {-# INLINE dd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > del $ span $ toHtml "foo" -- -- Result: -- -- > foo -- del :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. del = Parent "del" "" {-# INLINE del #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dfn $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dfn :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dfn = Parent "dfn" "" {-# INLINE dfn #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dir $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dir :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dir = Parent "dir" "" {-# INLINE dir #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > div $ span $ toHtml "foo" -- -- Result: -- -- > foo -- div :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. div = Parent "div" "" {-# INLINE div #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dl $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dl :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dl = Parent "dl" "" {-# INLINE dl #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dt $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dt :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dt = Parent "dt" "" {-# INLINE dt #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > em $ span $ toHtml "foo" -- -- Result: -- -- > foo -- em :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. em = Parent "em" "" {-# INLINE em #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > fieldset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- fieldset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. fieldset = Parent "fieldset" "" {-# INLINE fieldset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > font $ span $ toHtml "foo" -- -- Result: -- -- > foo -- font :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. font = Parent "font" "" {-# INLINE font #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > form $ span $ toHtml "foo" -- -- Result: -- -- > foo -- form :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. form = Parent "form" "" {-# INLINE form #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frame -- -- Result: -- -- > -- frame :: Html -- ^ Resulting HTML. frame = Leaf "frame" "" () {-# INLINE frame #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frameset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- frameset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. frameset = Parent "frameset" "" {-# INLINE frameset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h1 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h1 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h1 = Parent "h1" "" {-# INLINE h1 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h2 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h2 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h2 = Parent "h2" "" {-# INLINE h2 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h3 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h3 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h3 = Parent "h3" "" {-# INLINE h3 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h4 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h4 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h4 = Parent "h4" "" {-# INLINE h4 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h5 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h5 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h5 = Parent "h5" "" {-# INLINE h5 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h6 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h6 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h6 = Parent "h6" "" {-# INLINE h6 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > head $ span $ toHtml "foo" -- -- Result: -- -- > foo -- head :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. head = Parent "head" "" {-# INLINE head #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > hr -- -- Result: -- -- > -- hr :: Html -- ^ Resulting HTML. hr = Leaf "hr" "" () {-# INLINE hr #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > html $ span $ toHtml "foo" -- -- Result: -- -- > foo -- html :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. html = Parent "html" "" {-# INLINE html #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > i $ span $ toHtml "foo" -- -- Result: -- -- > foo -- i :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. i = Parent "i" "" {-# INLINE i #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > iframe $ span $ toHtml "foo" -- -- Result: -- -- > foo -- iframe :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. iframe = Parent "iframe" "" {-# INLINE iframe #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > img -- -- Result: -- -- > -- img :: Html -- ^ Resulting HTML. img = Leaf "img" "" () {-# INLINE img #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > input -- -- Result: -- -- > -- input :: Html -- ^ Resulting HTML. input = Leaf "input" "" () {-# INLINE input #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ins $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ins :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ins = Parent "ins" "" {-# INLINE ins #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > isindex $ span $ toHtml "foo" -- -- Result: -- -- > foo -- isindex :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. isindex = Parent "isindex" "" {-# INLINE isindex #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > kbd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- kbd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. kbd = Parent "kbd" "" {-# INLINE kbd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > label $ span $ toHtml "foo" -- -- Result: -- -- > foo -- label :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. label = Parent "label" "" {-# INLINE label #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > legend $ span $ toHtml "foo" -- -- Result: -- -- > foo -- legend :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. legend = Parent "legend" "" {-# INLINE legend #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > li $ span $ toHtml "foo" -- -- Result: -- -- > foo -- li :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. li = Parent "li" "" {-# INLINE li #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > link -- -- Result: -- -- > -- link :: Html -- ^ Resulting HTML. link = Leaf "link" "" () {-# INLINE link #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > map $ span $ toHtml "foo" -- -- Result: -- -- > foo -- map :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. map = Parent "map" "" {-# INLINE map #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > menu $ span $ toHtml "foo" -- -- Result: -- -- > foo -- menu :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. menu = Parent "menu" "" {-# INLINE menu #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > meta -- -- Result: -- -- > -- meta :: Html -- ^ Resulting HTML. meta = Leaf "meta" "" () {-# INLINE meta #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noframes $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noframes :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noframes = Parent "noframes" "" {-# INLINE noframes #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noscript $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noscript :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noscript = Parent "noscript" "" {-# INLINE noscript #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > object $ span $ toHtml "foo" -- -- Result: -- -- > foo -- object :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. object = Parent "object" "" {-# INLINE object #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ol $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ol :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ol = Parent "ol" "" {-# INLINE ol #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > optgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- optgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. optgroup = Parent "optgroup" "" {-# INLINE optgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > option $ span $ toHtml "foo" -- -- Result: -- -- > foo -- option :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. option = Parent "option" "" {-# INLINE option #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > p $ span $ toHtml "foo" -- -- Result: -- -- > foo -- p :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. p = Parent "p" "" {-# INLINE p #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > param -- -- Result: -- -- > -- param :: Html -- ^ Resulting HTML. param = Leaf "param" "" () {-# INLINE param #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > pre $ span $ toHtml "foo" -- -- Result: -- -- > foo -- pre :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. pre = Parent "pre" "" {-# INLINE pre #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > q $ span $ toHtml "foo" -- -- Result: -- -- > foo -- q :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. q = Parent "q" "" {-# INLINE q #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > s $ span $ toHtml "foo" -- -- Result: -- -- > foo -- s :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. s = Parent "s" "" {-# INLINE s #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > samp $ span $ toHtml "foo" -- -- Result: -- -- > foo -- samp :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. samp = Parent "samp" "" {-# INLINE samp #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\ -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" "
foo
" {-# INLINE blockquote #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > body $ span $ toHtml "foo" -- -- Result: -- -- > foo -- body :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. body = Parent "body" "" {-# INLINE body #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > br -- -- Result: -- -- > -- br :: Html -- ^ Resulting HTML. br = Leaf "br" "" () {-# INLINE br #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > button $ span $ toHtml "foo" -- -- Result: -- -- > foo -- button :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. button = Parent "button" "" {-# INLINE button #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > caption $ span $ toHtml "foo" -- -- Result: -- -- > foo -- caption :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. caption = Parent "caption" "" {-# INLINE caption #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > center $ span $ toHtml "foo" -- -- Result: -- -- > foo -- center :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. center = Parent "center" "" {-# INLINE center #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > cite $ span $ toHtml "foo" -- -- Result: -- -- > foo -- cite :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. cite = Parent "cite" "" {-# INLINE cite #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > code $ span $ toHtml "foo" -- -- Result: -- -- > foo -- code :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. code = Parent "code" "" {-# INLINE code #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > col -- -- Result: -- -- > -- col :: Html -- ^ Resulting HTML. col = Leaf "col" "" () {-# INLINE col #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > colgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- colgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. colgroup = Parent "colgroup" "" {-# INLINE colgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dd = Parent "dd" "" {-# INLINE dd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > del $ span $ toHtml "foo" -- -- Result: -- -- > foo -- del :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. del = Parent "del" "" {-# INLINE del #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dfn $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dfn :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dfn = Parent "dfn" "" {-# INLINE dfn #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dir $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dir :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dir = Parent "dir" "" {-# INLINE dir #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > div $ span $ toHtml "foo" -- -- Result: -- -- > foo -- div :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. div = Parent "div" "" {-# INLINE div #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dl $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dl :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dl = Parent "dl" "" {-# INLINE dl #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dt $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dt :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dt = Parent "dt" "" {-# INLINE dt #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > em $ span $ toHtml "foo" -- -- Result: -- -- > foo -- em :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. em = Parent "em" "" {-# INLINE em #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > fieldset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- fieldset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. fieldset = Parent "fieldset" "" {-# INLINE fieldset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > font $ span $ toHtml "foo" -- -- Result: -- -- > foo -- font :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. font = Parent "font" "" {-# INLINE font #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > form $ span $ toHtml "foo" -- -- Result: -- -- > foo -- form :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. form = Parent "form" "" {-# INLINE form #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frame -- -- Result: -- -- > -- frame :: Html -- ^ Resulting HTML. frame = Leaf "frame" "" () {-# INLINE frame #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frameset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- frameset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. frameset = Parent "frameset" "" {-# INLINE frameset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h1 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h1 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h1 = Parent "h1" "" {-# INLINE h1 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h2 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h2 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h2 = Parent "h2" "" {-# INLINE h2 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h3 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h3 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h3 = Parent "h3" "" {-# INLINE h3 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h4 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h4 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h4 = Parent "h4" "" {-# INLINE h4 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h5 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h5 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h5 = Parent "h5" "" {-# INLINE h5 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h6 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h6 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h6 = Parent "h6" "" {-# INLINE h6 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > head $ span $ toHtml "foo" -- -- Result: -- -- > foo -- head :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. head = Parent "head" "" {-# INLINE head #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > hr -- -- Result: -- -- > -- hr :: Html -- ^ Resulting HTML. hr = Leaf "hr" "" () {-# INLINE hr #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > html $ span $ toHtml "foo" -- -- Result: -- -- > foo -- html :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. html = Parent "html" "" {-# INLINE html #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > i $ span $ toHtml "foo" -- -- Result: -- -- > foo -- i :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. i = Parent "i" "" {-# INLINE i #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > iframe $ span $ toHtml "foo" -- -- Result: -- -- > foo -- iframe :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. iframe = Parent "iframe" "" {-# INLINE iframe #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > img -- -- Result: -- -- > -- img :: Html -- ^ Resulting HTML. img = Leaf "img" "" () {-# INLINE img #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > input -- -- Result: -- -- > -- input :: Html -- ^ Resulting HTML. input = Leaf "input" "" () {-# INLINE input #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ins $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ins :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ins = Parent "ins" "" {-# INLINE ins #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > isindex $ span $ toHtml "foo" -- -- Result: -- -- > foo -- isindex :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. isindex = Parent "isindex" "" {-# INLINE isindex #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > kbd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- kbd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. kbd = Parent "kbd" "" {-# INLINE kbd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > label $ span $ toHtml "foo" -- -- Result: -- -- > foo -- label :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. label = Parent "label" "" {-# INLINE label #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > legend $ span $ toHtml "foo" -- -- Result: -- -- > foo -- legend :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. legend = Parent "legend" "" {-# INLINE legend #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > li $ span $ toHtml "foo" -- -- Result: -- -- > foo -- li :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. li = Parent "li" "" {-# INLINE li #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > link -- -- Result: -- -- > -- link :: Html -- ^ Resulting HTML. link = Leaf "link" "" () {-# INLINE link #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > map $ span $ toHtml "foo" -- -- Result: -- -- > foo -- map :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. map = Parent "map" "" {-# INLINE map #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > menu $ span $ toHtml "foo" -- -- Result: -- -- > foo -- menu :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. menu = Parent "menu" "" {-# INLINE menu #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > meta -- -- Result: -- -- > -- meta :: Html -- ^ Resulting HTML. meta = Leaf "meta" "" () {-# INLINE meta #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noframes $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noframes :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noframes = Parent "noframes" "" {-# INLINE noframes #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noscript $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noscript :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noscript = Parent "noscript" "" {-# INLINE noscript #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > object $ span $ toHtml "foo" -- -- Result: -- -- > foo -- object :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. object = Parent "object" "" {-# INLINE object #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ol $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ol :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ol = Parent "ol" "" {-# INLINE ol #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > optgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- optgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. optgroup = Parent "optgroup" "" {-# INLINE optgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > option $ span $ toHtml "foo" -- -- Result: -- -- > foo -- option :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. option = Parent "option" "" {-# INLINE option #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > p $ span $ toHtml "foo" -- -- Result: -- -- > foo -- p :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. p = Parent "p" "" {-# INLINE p #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > param -- -- Result: -- -- > -- param :: Html -- ^ Resulting HTML. param = Leaf "param" "" () {-# INLINE param #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > pre $ span $ toHtml "foo" -- -- Result: -- -- > foo -- pre :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. pre = Parent "pre" "" {-# INLINE pre #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > q $ span $ toHtml "foo" -- -- Result: -- -- > foo -- q :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. q = Parent "q" "" {-# INLINE q #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > s $ span $ toHtml "foo" -- -- Result: -- -- > foo -- s :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. s = Parent "s" "" {-# INLINE s #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > samp $ span $ toHtml "foo" -- -- Result: -- -- > foo -- samp :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. samp = Parent "samp" "" {-# INLINE samp #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\ -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" "
@ element. -- -- Example: -- -- > code $ span $ toHtml "foo" -- -- Result: -- -- > foo -- code :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. code = Parent "code" "" {-# INLINE code #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > col -- -- Result: -- -- > -- col :: Html -- ^ Resulting HTML. col = Leaf "col" "" () {-# INLINE col #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > colgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- colgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. colgroup = Parent "colgroup" "" {-# INLINE colgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dd = Parent "dd" "" {-# INLINE dd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > del $ span $ toHtml "foo" -- -- Result: -- -- > foo -- del :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. del = Parent "del" "" {-# INLINE del #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dfn $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dfn :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dfn = Parent "dfn" "" {-# INLINE dfn #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dir $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dir :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dir = Parent "dir" "" {-# INLINE dir #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > div $ span $ toHtml "foo" -- -- Result: -- -- > foo -- div :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. div = Parent "div" "" {-# INLINE div #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dl $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dl :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dl = Parent "dl" "" {-# INLINE dl #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dt $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dt :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dt = Parent "dt" "" {-# INLINE dt #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > em $ span $ toHtml "foo" -- -- Result: -- -- > foo -- em :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. em = Parent "em" "" {-# INLINE em #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > fieldset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- fieldset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. fieldset = Parent "fieldset" "" {-# INLINE fieldset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > font $ span $ toHtml "foo" -- -- Result: -- -- > foo -- font :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. font = Parent "font" "" {-# INLINE font #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > form $ span $ toHtml "foo" -- -- Result: -- -- > foo -- form :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. form = Parent "form" "" {-# INLINE form #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frame -- -- Result: -- -- > -- frame :: Html -- ^ Resulting HTML. frame = Leaf "frame" "" () {-# INLINE frame #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frameset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- frameset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. frameset = Parent "frameset" "" {-# INLINE frameset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h1 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h1 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h1 = Parent "h1" "" {-# INLINE h1 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h2 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h2 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h2 = Parent "h2" "" {-# INLINE h2 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h3 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h3 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h3 = Parent "h3" "" {-# INLINE h3 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h4 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h4 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h4 = Parent "h4" "" {-# INLINE h4 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h5 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h5 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h5 = Parent "h5" "" {-# INLINE h5 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h6 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h6 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h6 = Parent "h6" "" {-# INLINE h6 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > head $ span $ toHtml "foo" -- -- Result: -- -- > foo -- head :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. head = Parent "head" "" {-# INLINE head #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > hr -- -- Result: -- -- > -- hr :: Html -- ^ Resulting HTML. hr = Leaf "hr" "" () {-# INLINE hr #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > html $ span $ toHtml "foo" -- -- Result: -- -- > foo -- html :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. html = Parent "html" "" {-# INLINE html #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > i $ span $ toHtml "foo" -- -- Result: -- -- > foo -- i :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. i = Parent "i" "" {-# INLINE i #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > iframe $ span $ toHtml "foo" -- -- Result: -- -- > foo -- iframe :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. iframe = Parent "iframe" "" {-# INLINE iframe #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > img -- -- Result: -- -- > -- img :: Html -- ^ Resulting HTML. img = Leaf "img" "" () {-# INLINE img #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > input -- -- Result: -- -- > -- input :: Html -- ^ Resulting HTML. input = Leaf "input" "" () {-# INLINE input #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ins $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ins :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ins = Parent "ins" "" {-# INLINE ins #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > isindex $ span $ toHtml "foo" -- -- Result: -- -- > foo -- isindex :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. isindex = Parent "isindex" "" {-# INLINE isindex #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > kbd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- kbd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. kbd = Parent "kbd" "" {-# INLINE kbd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > label $ span $ toHtml "foo" -- -- Result: -- -- > foo -- label :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. label = Parent "label" "" {-# INLINE label #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > legend $ span $ toHtml "foo" -- -- Result: -- -- > foo -- legend :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. legend = Parent "legend" "" {-# INLINE legend #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > li $ span $ toHtml "foo" -- -- Result: -- -- > foo -- li :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. li = Parent "li" "" {-# INLINE li #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > link -- -- Result: -- -- > -- link :: Html -- ^ Resulting HTML. link = Leaf "link" "" () {-# INLINE link #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > map $ span $ toHtml "foo" -- -- Result: -- -- > foo -- map :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. map = Parent "map" "" {-# INLINE map #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > menu $ span $ toHtml "foo" -- -- Result: -- -- > foo -- menu :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. menu = Parent "menu" "" {-# INLINE menu #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > meta -- -- Result: -- -- > -- meta :: Html -- ^ Resulting HTML. meta = Leaf "meta" "" () {-# INLINE meta #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noframes $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noframes :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noframes = Parent "noframes" "" {-# INLINE noframes #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noscript $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noscript :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noscript = Parent "noscript" "" {-# INLINE noscript #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > object $ span $ toHtml "foo" -- -- Result: -- -- > foo -- object :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. object = Parent "object" "" {-# INLINE object #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ol $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ol :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ol = Parent "ol" "" {-# INLINE ol #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > optgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- optgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. optgroup = Parent "optgroup" "" {-# INLINE optgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > option $ span $ toHtml "foo" -- -- Result: -- -- > foo -- option :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. option = Parent "option" "" {-# INLINE option #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > p $ span $ toHtml "foo" -- -- Result: -- -- > foo -- p :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. p = Parent "p" "" {-# INLINE p #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > param -- -- Result: -- -- > -- param :: Html -- ^ Resulting HTML. param = Leaf "param" "" () {-# INLINE param #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > pre $ span $ toHtml "foo" -- -- Result: -- -- > foo -- pre :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. pre = Parent "pre" "" {-# INLINE pre #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > q $ span $ toHtml "foo" -- -- Result: -- -- > foo -- q :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. q = Parent "q" "" {-# INLINE q #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > s $ span $ toHtml "foo" -- -- Result: -- -- > foo -- s :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. s = Parent "s" "" {-# INLINE s #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > samp $ span $ toHtml "foo" -- -- Result: -- -- > foo -- samp :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. samp = Parent "samp" "" {-# INLINE samp #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\ -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" "
" {-# INLINE code #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > col -- -- Result: -- -- > -- col :: Html -- ^ Resulting HTML. col = Leaf "col" "" () {-# INLINE col #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > colgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- colgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. colgroup = Parent "colgroup" "" {-# INLINE colgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dd = Parent "dd" "" {-# INLINE dd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > del $ span $ toHtml "foo" -- -- Result: -- -- > foo -- del :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. del = Parent "del" "" {-# INLINE del #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dfn $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dfn :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dfn = Parent "dfn" "" {-# INLINE dfn #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dir $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dir :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dir = Parent "dir" "" {-# INLINE dir #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > div $ span $ toHtml "foo" -- -- Result: -- -- > foo -- div :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. div = Parent "div" "" {-# INLINE div #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dl $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dl :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dl = Parent "dl" "" {-# INLINE dl #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > dt $ span $ toHtml "foo" -- -- Result: -- -- > foo -- dt :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. dt = Parent "dt" "" {-# INLINE dt #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > em $ span $ toHtml "foo" -- -- Result: -- -- > foo -- em :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. em = Parent "em" "" {-# INLINE em #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > fieldset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- fieldset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. fieldset = Parent "fieldset" "" {-# INLINE fieldset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > font $ span $ toHtml "foo" -- -- Result: -- -- > foo -- font :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. font = Parent "font" "" {-# INLINE font #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > form $ span $ toHtml "foo" -- -- Result: -- -- > foo -- form :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. form = Parent "form" "" {-# INLINE form #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frame -- -- Result: -- -- > -- frame :: Html -- ^ Resulting HTML. frame = Leaf "frame" "" () {-# INLINE frame #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > frameset $ span $ toHtml "foo" -- -- Result: -- -- > foo -- frameset :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. frameset = Parent "frameset" "" {-# INLINE frameset #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h1 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h1 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h1 = Parent "h1" "" {-# INLINE h1 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h2 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h2 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h2 = Parent "h2" "" {-# INLINE h2 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h3 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h3 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h3 = Parent "h3" "" {-# INLINE h3 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h4 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h4 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h4 = Parent "h4" "" {-# INLINE h4 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h5 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h5 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h5 = Parent "h5" "" {-# INLINE h5 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > h6 $ span $ toHtml "foo" -- -- Result: -- -- > foo -- h6 :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. h6 = Parent "h6" "" {-# INLINE h6 #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > head $ span $ toHtml "foo" -- -- Result: -- -- > foo -- head :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. head = Parent "head" "" {-# INLINE head #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > hr -- -- Result: -- -- > -- hr :: Html -- ^ Resulting HTML. hr = Leaf "hr" "" () {-# INLINE hr #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > html $ span $ toHtml "foo" -- -- Result: -- -- > foo -- html :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. html = Parent "html" "" {-# INLINE html #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > i $ span $ toHtml "foo" -- -- Result: -- -- > foo -- i :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. i = Parent "i" "" {-# INLINE i #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > iframe $ span $ toHtml "foo" -- -- Result: -- -- > foo -- iframe :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. iframe = Parent "iframe" "" {-# INLINE iframe #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > img -- -- Result: -- -- > -- img :: Html -- ^ Resulting HTML. img = Leaf "img" "" () {-# INLINE img #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > input -- -- Result: -- -- > -- input :: Html -- ^ Resulting HTML. input = Leaf "input" "" () {-# INLINE input #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ins $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ins :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ins = Parent "ins" "" {-# INLINE ins #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > isindex $ span $ toHtml "foo" -- -- Result: -- -- > foo -- isindex :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. isindex = Parent "isindex" "" {-# INLINE isindex #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > kbd $ span $ toHtml "foo" -- -- Result: -- -- > foo -- kbd :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. kbd = Parent "kbd" "" {-# INLINE kbd #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > label $ span $ toHtml "foo" -- -- Result: -- -- > foo -- label :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. label = Parent "label" "" {-# INLINE label #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > legend $ span $ toHtml "foo" -- -- Result: -- -- > foo -- legend :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. legend = Parent "legend" "" {-# INLINE legend #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > li $ span $ toHtml "foo" -- -- Result: -- -- > foo -- li :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. li = Parent "li" "" {-# INLINE li #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > link -- -- Result: -- -- > -- link :: Html -- ^ Resulting HTML. link = Leaf "link" "" () {-# INLINE link #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > map $ span $ toHtml "foo" -- -- Result: -- -- > foo -- map :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. map = Parent "map" "" {-# INLINE map #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > menu $ span $ toHtml "foo" -- -- Result: -- -- > foo -- menu :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. menu = Parent "menu" "" {-# INLINE menu #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > meta -- -- Result: -- -- > -- meta :: Html -- ^ Resulting HTML. meta = Leaf "meta" "" () {-# INLINE meta #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noframes $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noframes :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noframes = Parent "noframes" "" {-# INLINE noframes #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > noscript $ span $ toHtml "foo" -- -- Result: -- -- > foo -- noscript :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. noscript = Parent "noscript" "" {-# INLINE noscript #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > object $ span $ toHtml "foo" -- -- Result: -- -- > foo -- object :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. object = Parent "object" "" {-# INLINE object #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > ol $ span $ toHtml "foo" -- -- Result: -- -- > foo -- ol :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. ol = Parent "ol" "" {-# INLINE ol #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > optgroup $ span $ toHtml "foo" -- -- Result: -- -- > foo -- optgroup :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. optgroup = Parent "optgroup" "" {-# INLINE optgroup #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > option $ span $ toHtml "foo" -- -- Result: -- -- > foo -- option :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. option = Parent "option" "" {-# INLINE option #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > p $ span $ toHtml "foo" -- -- Result: -- -- > foo -- p :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. p = Parent "p" "" {-# INLINE p #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > param -- -- Result: -- -- > -- param :: Html -- ^ Resulting HTML. param = Leaf "param" "" () {-# INLINE param #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > pre $ span $ toHtml "foo" -- -- Result: -- -- > foo -- pre :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. pre = Parent "pre" "" {-# INLINE pre #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > q $ span $ toHtml "foo" -- -- Result: -- -- > foo -- q :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. q = Parent "q" "" {-# INLINE q #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > s $ span $ toHtml "foo" -- -- Result: -- -- > foo -- s :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. s = Parent "s" "" {-# INLINE s #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > samp $ span $ toHtml "foo" -- -- Result: -- -- > foo -- samp :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. samp = Parent "samp" "" {-# INLINE samp #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\ -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" "
@ element. -- -- Example: -- -- > p $ span $ toHtml "foo" -- -- Result: -- -- >
" {-# INLINE p #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:226 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > param -- -- Result: -- -- > -- param :: Html -- ^ Resulting HTML. param = Leaf "param" "" () {-# INLINE param #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\
@ element. -- -- Example: -- -- > pre $ span $ toHtml "foo" -- -- Result: -- -- > foo -- pre :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. pre = Parent "pre" "" {-# INLINE pre #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > q $ span $ toHtml "foo" -- -- Result: -- -- > foo -- q :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. q = Parent "q" "" {-# INLINE q #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > s $ span $ toHtml "foo" -- -- Result: -- -- > foo -- s :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. s = Parent "s" "" {-# INLINE s #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > samp $ span $ toHtml "foo" -- -- Result: -- -- > foo -- samp :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. samp = Parent "samp" "" {-# INLINE samp #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\ -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" "
" {-# INLINE pre #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > q $ span $ toHtml "foo" -- -- Result: -- -- > foo -- q :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. q = Parent "q" "" {-# INLINE q #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > s $ span $ toHtml "foo" -- -- Result: -- -- > foo -- s :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. s = Parent "s" "" {-# INLINE s #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > samp $ span $ toHtml "foo" -- -- Result: -- -- > foo -- samp :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. samp = Parent "samp" "" {-# INLINE samp #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\ -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" "
@ element. -- -- Example: -- -- > q $ span $ toHtml "foo" -- -- Result: -- -- > foo -- q :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. q = Parent "q" "" {-# INLINE q #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > s $ span $ toHtml "foo" -- -- Result: -- -- > foo -- s :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. s = Parent "s" "" {-# INLINE s #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > samp $ span $ toHtml "foo" -- -- Result: -- -- > foo -- samp :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. samp = Parent "samp" "" {-# INLINE samp #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\ -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" "
" {-# INLINE q #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > s $ span $ toHtml "foo" -- -- Result: -- -- > foo -- s :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. s = Parent "s" "" {-# INLINE s #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\@ element. -- -- Example: -- -- > samp $ span $ toHtml "foo" -- -- Result: -- -- > foo -- samp :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. samp = Parent "samp" "" {-# INLINE samp #-} -- WARNING: The next block of code was automatically generated by -- src/Util/GenerateHtmlCombinators.hs:199 -- -- | Combinator for the @\ -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" " -- script :: Html -- ^ Inner HTML. -> Html -- ^ Resulting HTML. script = Parent "script" "