module Html_sigs:sig
..end
HTML signatures for the functorial interface.
module type T =sig
..end
Signature of typesafe constructors for HTML documents.
module type NoWrap =T
with module Xml.W = Xml_wrap.NoWrap
Equivalent to Html_sigs.T
, but without wrapping.
module Make(
Xml
:
Xml_sigs.T
)
(
Svg
:
Svg_sigs.T
with module Xml := Xml
)
:sig
..end
Signature functor for Html_f.Make
.
module type Wrapped_functions =sig
..end
Wrapped functions, to be used with Html_f.Make_with_wrapped_functions
.