HTMLSourceViewing values of various types in HTML format.
Escapes special HTML symbols ("<", ">", "&", """").
Tagged viewer: tag name p surrounds p with open and close tags with name name. Optional argument attrs can be given to provide attributes for the tag (for example, tag "table" ~attrs:"align=center" p).
attrs provides HTML tag attributesattrs provides HTML tag attributesFunctor anchor takes one argument which describes type for which values anchors are set and name to distinguish namespaces (if any).
Functor to provide list to HTML generation.
Functor to provide array to HTML generation.
Functor to provide set to HTML generation. Set items are ordered in according to their <b>string representations</b>.
module Map
(M : Map.S)
(K : Element with type t = M.key)
(V : Element) :
Element with type t = V.t M.tFunctor to provide map to HTML generation. Set items are ordered in according to their <b>string representations</b>.
module Hashtbl
(M : Hashtbl.S)
(K : Element with type t = M.key)
(V : Element) :
Element with type t = V.t M.tFunctor to provide hash table to HTML generation. Set items are ordered in according to their <b>string representations</b>.
module NamedPair
(N : sig ... end)
(F : Element)
(S : Element) :
Element with type t = F.t * S.tFunctor to provide named pair to HTML generation. The first parameter sets component names.
Functor to provide unnamed pair to HTML generation.