Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. formaction :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the formaction attribute. Example:

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

  2. formenctype :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the formenctype attribute. Example:

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

  3. formmethod :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the formmethod attribute. Example:

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

  4. 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>
    

  5. formtarget :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the formtarget attribute. Example:

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

  6. form :: Html -> Html

    blaze-html Text.Blaze.XHtml1.FrameSet

    Combinator for the <form> element. Example:

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

  7. form :: Html -> Html

    blaze-html Text.Blaze.XHtml1.Strict

    Combinator for the <form> element. Example:

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

  8. form :: Html -> Html

    blaze-html Text.Blaze.XHtml1.Transitional

    Combinator for the <form> element. Example:

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

  9. form :: Html -> Html

    blaze-html Text.Blaze.XHtml5

    Combinator for the <form> element. Example:

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

  10. form :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml5.Attributes

    Combinator for the form attribute. Example:

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

Page 22 of many | Previous | Next