module XML:sig
..end
type
t = {
|
tag : |
(* | Identifier of XML tag. | *) |
|
attrs : |
(* | Attributes of XML tag. | *) |
|
text : |
(* | Text of XML tag, written before children. | *) |
|
children : |
(* | Children of XML tag. | *) |
val escape : Utils.UTF8.t -> Utils.UTF8.t
val dump : t -> Utils.UTF8Buffer.t -> unit