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!

try using triple-stache

{{{thing_to_render_unescaped}}} 

http://jsfiddle.net/a9dp62g4/1/


Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -