Hoogle Search

Within LTS Haskell 22.22 (ghc-9.6.5)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. renderHtmlWith :: (ByteString -> Text) -> Html -> Text

    blaze-html Text.Blaze.Html.Renderer.Text

    No documentation available.

  2. renderHtml :: Html -> ByteString

    blaze-html Text.Blaze.Html.Renderer.Utf8

    No documentation available.

  3. renderHtmlBuilder :: Html -> Builder

    blaze-html Text.Blaze.Html.Renderer.Utf8

    No documentation available.

  4. renderHtmlToByteStringIO :: (ByteString -> IO ()) -> Html -> IO ()

    blaze-html Text.Blaze.Html.Renderer.Utf8

    No documentation available.

  5. docTypeHtml :: Html -> Html

    blaze-html Text.Blaze.Html4.FrameSet

    Combinator for the <html> element. This combinator will also insert the correct doctype. Example:

    docTypeHtml $ span $ toHtml "foo"
    
    Result:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 FrameSet//EN"
    "http://www.w3.org/TR/html4/frameset.dtd">
    <html><span>foo</span></html>
    

  6. docTypeHtml :: Html -> Html

    blaze-html Text.Blaze.Html4.Strict

    Combinator for the <html> element. This combinator will also insert the correct doctype. Example:

    docTypeHtml $ span $ toHtml "foo"
    
    Result:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd">
    <html><span>foo</span></html>
    

  7. docTypeHtml :: Html -> Html

    blaze-html Text.Blaze.Html4.Transitional

    Combinator for the <html> element. This combinator will also insert the correct doctype. Example:

    docTypeHtml $ span $ toHtml "foo"
    
    Result:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html><span>foo</span></html>
    

  8. docTypeHtml :: Html -> Html

    blaze-html Text.Blaze.Html5

    Combinator for the <html> element. This combinator will also insert the correct doctype. Example:

    docTypeHtml $ span $ toHtml "foo"
    
    Result:
    <!DOCTYPE HTML>
    <html><span>foo</span></html>
    

  9. docTypeHtml :: Html -> Html

    blaze-html Text.Blaze.XHtml1.FrameSet

    Combinator for the <html> element. This combinator will also insert the correct doctype. Example:

    docTypeHtml $ span $ toHtml "foo"
    
    Result:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 FrameSet//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
    <html><span>foo</span></html>
    

  10. docTypeHtml :: Html -> Html

    blaze-html Text.Blaze.XHtml1.Strict

    Combinator for the <html> element. This combinator will also insert the correct doctype. Example:

    docTypeHtml $ span $ toHtml "foo"
    
    Result:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html><span>foo</span></html>
    

Page 3 of many | Previous | Next