ng-bind-html-unsafe was removed in Angular 1.2
ng-bind-html-unsafe
I\'m trying to implement something where I need to use ng-bind-html-unsafe. In the docs and
Simply creating a filter will do the trick. (Answered for Angular 1.6)
.filter('trustHtml', [ '$sce', function($sce) { return function(value) { return $sce.trustAs('html', value); } } ]);
And use this as follow in the html.