package mustache

  1. Overview
  2. Docs
type token =
  1. | UNESCAPE of string list
  2. | RAW of string
  3. | PARTIAL of int * string
  4. | OPEN_SECTION of string list
  5. | OPEN_PARTIAL_WITH_PARAMS of int * string
  6. | OPEN_PARAM of int * string
  7. | OPEN_INVERTED_SECTION of string list
  8. | ESCAPE of string list
  9. | EOF
  10. | COMMENT of string
  11. | CLOSE of string
exception Error
val mustache : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Mustache_types.Ast.t