#88 htmlSafe
If you have a helper function that needs to return an html string, do NOT
return '<div>someString</div>';
Because the html will be escaped. Instead:
return Ember.String.htmlSafe('<div>someString</div>');Originally published at Ember Daily Tips.