JSFiddle - React, Tailwind, and code Playground
by Adit Pillai
HTML
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js">
</script>
<script>
angular.module('module', []);
angular.module('module').controller('hello', function($scope) {
$scope.obj = {
"text": "<u>HelloWorld</u>"
};
});
</script>
<body>
<div ng-app='module' ng-controller='hello'>
Current:     {{obj.text}}
<br>
<br> Expected:     
<u>HelloWorld</u>
</div>
</body>