Render logic-less Mustache templates against JSON context. Supports {{var}}, {{{raw}}}, {{#section}}, {{^inverted}}, {{>partial}}, and dot notation.
{ "header": "...", "row": "..." }){{name}} HTML-escaped variable · {{{name}}} or {{&name}} unescaped ·
{{#items}}…{{/items}} section (iterates arrays, renders on truthy) ·
{{^items}}…{{/items}} inverted (renders on empty/falsy) ·
{{.}} current value in array loop ·
{{a.b.c}} dot notation ·
{{! comment }} comments ·
{{>partialName}} partial lookup ·
{{=<% %>=}} set delimiters.