package mustache

  1. Overview
  2. Docs
type t =
  1. | String of string
  2. | Escaped of dotted_name
  3. | Section of section
  4. | Unescaped of dotted_name
  5. | Partial of partial
  6. | Inverted_section of section
  7. | Concat of t list
  8. | Comment of string
and section = {
  1. name : dotted_name;
  2. contents : t;
}
and partial = {
  1. indent : int;
  2. name : name;
  3. contents : t option Stdlib.Lazy.t;
}