Angular - html teg show
/*чтобы выводить вместе с тегами*/
port.filter('asHTML', function($sce) {
return function(input) {
return $sce.trustAsHtml(input);
};
})
/*<p ng-bind-html="work.html | asHTML"></p>*/
/*чтобы выводить вместе с тегами end*/