JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app ng-controller="MyCtrl">
<ul>
<li ng-repeat=" opt in opts" ng-bind-html-unsafe="getContent(opt)" >
{{ opt.value }}
</li>
</ul>
<p>{{opt}}</p>
</div>
JavaScript
function MyCtrl($scope) {
$scope.getContent = function(obj){
return obj.value + " " + obj.text
}
$scope.opts = [
{value: 111, text: '<b>1st</b>' },
{value: 222, text: '<i>2nd</i>' }
];
}