I\'m trying to template a template, like below:
{{{
{
\"name\" : \"{{name}}\",
\"description\" : \"{{description}}\"
}
}}}
{{{debug this}}}
You can also assign Mustache.tags = ["[[", "]]"]; before your template compilation.
http://jsfiddle.net/fhwe4o8k/1/
e.g.
$(function () {
Mustache.tags = ["[[", "]]"];
var template = $('#test').html();
Mustache.parse(template);
var rendered = Mustache.render(template, {test: "Chris"});
$('#content-placeholder').html(rendered);
});