var text1 = "<b>sometext</b>";
var text2 = "<b>sometext</b>";
ng-bind-html="text1"
works fine. The result is sometext
but ng-bind-html="text2"
doesn't work. The result is <b>sometext<b>
How can I makeng-bind-html="text2"
work.
Thank you.