javascript - How to render italic/bold text using handlebars? -
so here thing, using handlebars render template on page.
now in context js object, have paragraph, should have few italic words,
for e.g:
var context = { "event":"this event name <i>xyz</i>" } and paragraph rendered as,
event name <i>xyz</i> is there way can make/escape font italic/bold in handlebarsjs/mustachejs ??
here fiddle
thanks!
Comments
Post a Comment