Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

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

  1. ForA :: Attribute "for" 'False 'False

    type-of-html Html.Type

    No documentation available.

  2. Form :: Element "form" '['Flow, 'Palpable] ('Flow ':&: 'NOT ('Elements '["form"])) (GetAttributeName 'AcceptCharsetA ': ('ActionA & ('AutocompleteA & ('EnctypeA & ('MethodA & ('NameA & ('NovalidateA & ('TargetA & ('RelA & ('[] :: [Symbol]))))))))))

    type-of-html Html.Type

    4.10 Forms 4.10.3

  3. FormA :: Attribute "form" 'False 'False

    type-of-html Html.Type

    No documentation available.

  4. FormactionA :: Attribute "formaction" 'False 'False

    type-of-html Html.Type

    No documentation available.

  5. FormenctypeA :: Attribute "formenctype" 'False 'False

    type-of-html Html.Type

    No documentation available.

  6. FormmethodA :: Attribute "formmethod" 'False 'False

    type-of-html Html.Type

    No documentation available.

  7. FormnovalidateA :: Attribute "formnovalidate" 'False 'True

    type-of-html Html.Type

    No documentation available.

  8. FormtargetA :: Attribute "formtarget" 'False 'False

    type-of-html Html.Type

    No documentation available.

  9. module Text.Format

    This library is inspired by Python's str.format and Haskell's Text.Printf, and most of the features are copied from these two libraries.

  10. data Format

    vformat Text.Format

    A data type indicates a format string Format string contains "replacement fields" surrounded by curly braces {}. Anything that is not contained in braces is considered literal text, which is copied unchanged to the output. If you need to include a brace character in the literal text, it can be escaped by doubling {{ and }}.

    Format string syntax

    format -> {chars | ("{" [key][":"fmt] "}")}
    key    -> <see ArgKey>
    fmt    -> <see ArgFmt>
    
    
    Note: This library use a description language to describe syntax, see next section. Note: A key can be omitted only if there is no explict index key before it, it will be automatically caculated and inserted to the format string according to its position in the omitted key sequence. Examples
    >>> "I like {coffee}, I drink it everyday." :: Format
    
    >>> "{no:<20}    {name:<20}    {age}" :: Format
    
    >>> "{{\"no\": {no}, \"name\": \"{name}\"}}" :: Format
    

    Syntax description language

    A syntax expr may contain a list of fields as followings
    identifier                       identifier of an expr
    <description>                    use natural language as an expr
    ->                               use right hand expr to describe identifier
    ()                               a required field, may be omitted
    []                               an optional field
    {}                               repeat any times of the field
    |                                logical or, choice between left and right
    ""                               literal text
    
    
    Built-in exprs
    char  -> <any character>
    chars -> {char}
    int   -> <integer without sign>
    
    

Page 319 of many | Previous | Next