package mustache

  1. Overview
  2. Docs
type loc = {
  1. loc_start : Stdlib.Lexing.position;
  2. loc_end : Stdlib.Lexing.position;
}
type desc =
  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;
}
and t = {
  1. loc : loc;
  2. desc : desc;
}