Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. classid :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html4.FrameSet.Attributes

    Combinator for the classid attribute. Example:

    div ! classid "bar" $ "Hello."
    
    Result:
    <div classid="bar">Hello.</div>
    

  2. width :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html4.FrameSet.Attributes

    Combinator for the width attribute. Example:

    div ! width "bar" $ "Hello."
    
    Result:
    <div width="bar">Hello.</div>
    

  3. classid :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html4.Strict.Attributes

    Combinator for the classid attribute. Example:

    div ! classid "bar" $ "Hello."
    
    Result:
    <div classid="bar">Hello.</div>
    

  4. width :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html4.Strict.Attributes

    Combinator for the width attribute. Example:

    div ! width "bar" $ "Hello."
    
    Result:
    <div width="bar">Hello.</div>
    

  5. classid :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html4.Transitional.Attributes

    Combinator for the classid attribute. Example:

    div ! classid "bar" $ "Hello."
    
    Result:
    <div classid="bar">Hello.</div>
    

  6. width :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html4.Transitional.Attributes

    Combinator for the width attribute. Example:

    div ! width "bar" $ "Hello."
    
    Result:
    <div width="bar">Hello.</div>
    

  7. aside :: Html -> Html

    blaze-html Text.Blaze.Html5

    Combinator for the <aside> element. Example:

    aside $ span $ toHtml "foo"
    
    Result:
    <aside><span>foo</span></aside>
    

  8. video :: Html -> Html

    blaze-html Text.Blaze.Html5

    Combinator for the <video> element. Example:

    video $ span $ toHtml "foo"
    
    Result:
    <video><span>foo</span></video>
    

  9. formnovalidate :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the formnovalidate attribute. Example:

    div ! formnovalidate "bar" $ "Hello."
    
    Result:
    <div formnovalidate="bar">Hello.</div>
    

  10. hidden :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the hidden attribute. Example:

    div ! hidden "bar" $ "Hello."
    
    Result:
    <div hidden="bar">Hello.</div>
    

Page 422 of many | Previous | Next