package embedded_ocaml_templates

  1. Overview
  2. Docs
type elt =
  1. | Text of string
  2. | Code of string
  3. | Output_code of string
  4. | Output_format of string * string
type t = string * elt list
type tag_options = {
  1. slurp_before : bool;
  2. slurp_after : bool;
}
val show_tag_options : tag_options -> Ppx_deriving_runtime.string
type tag =
  1. | Code of string
  2. | Output_code of string
  3. | Output_format of string * string
type elt' =
  1. | Text of string
  2. | Whitespace of string
  3. | Tag of tag_options * tag
type t' = string * elt' list
val elt_of_tag : tag -> elt
val t_of_t' : ('a * elt' list) -> 'a * elt list