I have an array like this in JavaScript:
[name: \"myname\", text: \"my html text\"]
my html text
Now when I use this in my Mustache t
use triple curly braces if you want to output html. {{{html}}}
{{{html}}}
from the docs:
All variables are HTML-escaped by default. If you want to render unescaped HTML, use the triple mustache: {{{name}}}. You can also use & to unescape a variable.
https://github.com/janl/mustache.js/