package SZXX

  1. Overview
  2. Docs
type node =
  1. | Prologue of attr_list
  2. | Element_open of {
    1. tag : string;
    2. attrs : attr_list;
    }
  3. | Element_close of string
  4. | Text of string
  5. | Cdata of string
  6. | Nothing
  7. | Many of node list
val sexp_of_node : node -> Sexplib0.Sexp.t
module To_DOM : sig ... end
module Stream : sig ... end