I\'m trying to template a template, like below:
{{{ { \"name\" : \"{{name}}\", \"description\" : \"{{description}}\" } }}} {{{debug this}}}
another option is create a helper for outputing curly brackets.
Handlebars.registerHelper('curly', function(object, open) { return open ? '{' : '}'; });
and then use it in the template like this:
which then outputs:
{Stack Over Flow Rocks}