I've an ember property which includes html tags (<br />, <strong>, <p>, <span>, and similar stuff).
<br />
<strong>
<p>
<span>
How can i tell ember not to escape this text? Is there any default Handlebars helper from ember, or need I to write my own?
From http://handlebarsjs.com/
Handlebars HTML-escapes values returned by a {{expression}}. If you don't want Handlebars to escape a value, use the "triple-stash". {{{expression}}}
Handlebars HTML-escapes values returned by a {{expression}}. If you don't want Handlebars to escape a value, use the "triple-stash".
{{expression}}
{{{expression}}}
2.1m questions
2.1m answers
60 comments
57.0k users