Last Updated: February 25, 2016
·
573
· ryan

Handlebars render safe HTML

I have an Ember application that I need to display some custom text.

If you want to render raw html to the page, use a triple curly brace:

{{{customText}}}

Normally it's only a double curly:

{{customText}}

Source: http://handlebarsjs.com/