If you are up on AngularJS 1.2+ then you might be aware that ng-bind-html-unsafe has been removed. The -unsafe directive was the simple (but unsafe) way to add HTML into your template. An example went something like: <p ng-bind-html-unsafe="data.markupData"></p> Iteration with ng-repeat was also straightforward: <div ng-repeat="item in items"> <p ng-bind-html-unsafe="item.markupData"></p> </div> W

