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
type partial_text = {
  1. literal : bool;
  2. raw : string;
}
val sexp_of_partial_text : partial_text -> Sexplib0.Sexp.t
type partial = {
  1. tag : string;
  2. attrs : attr_list;
  3. text : partial_text Core.Queue.t;
  4. children : DOM.element Core.Queue.t;
  5. staged : DOM.element Core.Queue.t;
}
val sexp_of_partial : partial -> Sexplib0.Sexp.t
module To_DOM : sig ... end
module Stream : sig ... end