package omd

  1. Overview
  2. Docs
type html = html_node list
and html_node =
  1. | Node of nodename * attributes * html
  2. | Data of string
  3. | Rawdata of string
  4. | Comment of string
and nodename = string
and attributes = attribute list
and attribute = string * string option
val to_string : html_node list -> string