Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
module Out : sig ... end
Output for HTML combinators.
type elt = Out.t -> unit
A html element. It is represented by its output function, so we can directly print it.
Element with children, represented as a list.
A chunk of sub-elements, possibly empty.
Element with children, represented as a list of sub_elt
to be flattened
val sub_empty : sub_elt
Sub-element with nothing inside. Useful in conditionals, when one decides not to emit a sub-element at all.
val txt : string -> elt
Emit a string value, which will be escaped.
val txtf :
('a, Stdlib.Format.formatter, unit, Out.t -> unit) Stdlib.format4 ->
'a
Formatted version of txt
val raw_html : string -> elt
Emit raw HTML. Caution, this can lead to injection vulnerabilities, never use with text that comes from untrusted users.
tag "menuitem", see mdn
tag "caption", see mdn
tag "caption", see mdn
tag "figcaption", see mdn
tag "figcaption", see mdn
tag "footer", see mdn
tag "footer", see mdn
tag "menu", see mdn
tag "menu", see mdn
tag "nav", see mdn
tag "nav", see mdn
module A : sig ... end
Attributes.