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.
ForA :: Attribute "for" 'False 'Falsetype-of-html Html.Type No documentation available.
-
type-of-html Html.Type 4.10 Forms 4.10.3
FormA :: Attribute "form" 'False 'Falsetype-of-html Html.Type No documentation available.
FormactionA :: Attribute "formaction" 'False 'Falsetype-of-html Html.Type No documentation available.
FormenctypeA :: Attribute "formenctype" 'False 'Falsetype-of-html Html.Type No documentation available.
FormmethodA :: Attribute "formmethod" 'False 'Falsetype-of-html Html.Type No documentation available.
FormnovalidateA :: Attribute "formnovalidate" 'False 'Truetype-of-html Html.Type No documentation available.
FormtargetA :: Attribute "formtarget" 'False 'Falsetype-of-html Html.Type No documentation available.
-
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.
-
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}\"}}" :: FormatSyntax description language
A syntax expr may contain a list of fields as followingsidentifier 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 textBuilt-in exprschar -> <any character> chars -> {char} int -> <integer without sign>