Template.Make_Template
The Make functor creates a templating module for a given RENDERABLE type. Supports variable replacement with the syntax {{variable}}
module R : RENDERABLE
type t
val create : string -> t
create s creates a new template with the given string s.
create s
s
val render : t -> R.t -> string
render t r renders the template t with the RENDERABLE data r.
render t r
t
r
val to_string : t -> string
to_string t converts the template t to a string.
to_string t