tsileo / ocaml-mustache

mustache.js logic-less templates in OCaml

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ocaml-mustache

mustache.js logic-less templates in OCaml

Example usage

let tmpl =
  Mustache.of_string "Hello {{name}}\n\
                      Mustache is:\n\
                      {{#qualities}}\
                      * {{name}}\n\
                      {{/qualities}}"

let json =
  `O [ "name", `String "OCaml"
     ; "qualities", `A [ `O ["name", `String "awesome"]
                       ; `O ["name", `String "simple"]
                       ; `O ["name", `String "fun"]
                       ]
     ]

let rendered =
  Mustache.render tmpl json

Spec compliance

ocaml-mustache complies¹ to the latest mustache specification, and is automatically tested against it.

¹: except for lambdas and set delimiters tags.

Todo/Wish List

  • Support for ropes

http://mustache.github.io/

About

mustache.js logic-less templates in OCaml

License:MIT License


Languages

Language:OCaml 99.4%Language:HTML 0.4%Language:Makefile 0.3%