I have a model that comes back from the server which contains html instead of text (for instance a b tag or an i tag) when I use ng-repeat to built a list out of it i
use ng-bind-html-unsafe
ng-bind-html-unsafe
it will apply html with text inside like below:
<li ng-repeat=" opt in opts" ng-bind-html-unsafe="opt.text" > {{ opt.text }} </li>