Is there a simple way to build a string "{value}" with Handlebars? Perhaps something analogous to:
Handlebars.compile("\{{{var}}\}")({var:"value"})
Is there a simple way to build a string "{value}" with Handlebars? Perhaps something analogous to:
Handlebars.compile("\{{{var}}\}")({var:"value"})
Handlebars support whitespace with the
~
character. The following should work