How to parse html tags inside string in angular js
You should use ng-bind-html
directive. To utilise that you need to:
//1. given
.controller('AppController', [
function() {
$scope.SomeHtml = '<b>some html</b>';
//2. use ng-bind
<div ng-bind-html="SomeHtml"></div>
Check the demo from official AngularJS documentation on plnkr.co.