module Html5: Tyxml_html
include Html_sigs.Make(Tyxml_xml)(Tyxml_svg).T
Html_sigs.T.val pp : ?encode:(string -> string) ->
?advert:string -> unit -> Format.formatter -> doc -> unitpp () is a Format printer for Html documents.
It can be used in combination with "%a". For example, to get a string:
let s = Format.asprintf "%a" (Tyxml.Html.pp ()) my_htmlval pp_elt : ?encode:(string -> string) -> unit -> Format.formatter -> 'a elt -> unitpp_elt () is a Format printer for Html elements.module Make_printer(O:Xml_sigs.Output):Xml_sigs.Typed_printerwith type out := O.out and type 'a elt := 'a elt and type doc := doc