I have an array like this in JavaScript:
[name: "myname", text: "<p>my html text</p>"]
Now when I use this in my Mustache template it displays the text as:
<p>my html text</p>
I just want to have it as html, like:
my html text
—
The template I use is something like this:
<div>
{{name}}
{{html}}
</div>
use triple curly braces if you want to output html.
{{{html}}}from the docs:
https://github.com/janl/mustache.js/