1234567891011121314151617181920212223242526(** Typed implementation for HTML, SVG and XML
This is the natural implementation of the TyXML combinators
based on an XML data-structure.
Other implementations are available, see {{!page-"index"}the manual} for
details.
*)(** Typesafe constructors and printers for HTML documents.
@see <http://www.w3.org/TR/html/> W3C Recommendation *)moduleHtml=Tyxml_html(** Typesafe constructors and printers for Svg documents.
@see <http://www.w3.org/TR/SVG> W3C Recommendation *)moduleSvg=Tyxml_svg(** Basic functions for construction and manipulation of XML tree. *)moduleXml=Tyxml_xml(** Deprecated alias for {!Html}.
@deprecated "Use Html" *)moduleHtml5=Tyxml_html[@@ocaml.deprecated"Use Tyxml.Html"]