Ryan Full-tilt, full-stack developer, from JS -> SQL and everything in between.
5 min read

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/