Please find the plnkr
I want to display some html preview. The html is already sanitized at the server (for eg: \"<b>HELLO</b>\"
You just need to use $sce.trustAsHtml and unsanitize
HTML on your client: http://plnkr.co/edit/h2loxWsPJOELhNvkfHmK?p=preview
// From: https://stackoverflow.com/questions/1912501/unescape-html-entities-in-javascript
function htmlDecode(input){
var e = document.createElement('div');
e.innerHTML = input;
return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
}
myApp.controller('myController', ['$scope', '$sce', function myController($scope, $sce){
$scope.myHtml = "<b>HELLO</b>";
$scope.myHtml2 = $sce.trustAsHtml(htmlDecode("<b>HELLO</b>"));
}]);
htmlDecode
from: Unescape HTML entities in Javascript?
However, I would not recommend taking this approach. It feels very hackish and I suspect could lead to vulnerabilities on your site.