package forester

  1. Overview
  2. Docs
type attr = string * string
type node =
  1. | Text of string
  2. | Tag of string * t
  3. | EmbedTeX of {
    1. packages : string list;
    2. source : t;
    }
  4. | Block of t * t
and t = node list
and env
and clo =
  1. | Clo of env * string list * Syn.t
val sentence_case : node list -> node list
type doc = {
  1. title : t option;
  2. taxon : string option;
  3. authors : string list;
  4. date : Prelude.Date.t option;
  5. addr : string;
  6. metas : (string * t) list;
  7. body : t;
}
module Doc : sig ... end
OCaml

Innovation. Community. Security.