.filter('to_trusted', ['$sce',function ($sce) {
return function (text) {
return $sce.trustAsHtml(text);
}
}])
05-11 11:13