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:&nbsp&nbsp&nbsp&nbsp&nbsp{{obj.text}}

    <br>
    <br> Expected:&nbsp&nbsp&nbsp&nbsp&nbsp
    <u>HelloWorld</u>
  </div>
</body>