Is there a way to insert a string with html tags into a descriptor template without getting the tags escaped in the outgoing string?
template.js:
<p>{{content}}</p>
use pattern
HBS.template({content: "<i>test</i> 123"})
actual result:
<p><i>test</i> 123</p>
Expected Result:
<p><i>test</i> 123</p>
Andreas Köberle Nov 29 '13 at 7:37 2013-11-29 07:37
source share