<div>
<span ng-bind-html="ShowHtml"></span>
</div>
myApp = angular.module('App', []);
myApp.controller(function($sce, $scope) {
var ShowHtml = '<span>html을 보여줍니다</span>';
// ShowHtml 에 html 태그에 저장하여 출력
$scope.trustedHtml = $sce.trustAsHtml(ShowHtml);
});