package tyxml

  1. Overview
  2. Docs

Printers for raw XML modules.

Parameters

module I : TagList

Signature

val pp : ?encode:(string -> string) -> ?indent:bool -> unit -> Stdlib.Format.formatter -> Xml.elt -> unit

pp () is a Format printer for untyped XML.

It can be used in combination with "%a". For example, to get a string:

let s = Format.asprintf "%a" (pp ()) my_xml

A custom encoding function can be provided with the ~encode argument. Various implementations of encode are available in Xml_print.