Certain chars and text after that gets rejected when using ng-bind-html along with $sce.trustAsHtml. Any Ideas on taclking this issue?
Controller
angular.module('myApp', []).controller('IndexController', ['$scope', '$sce', function($scope, $sce){
$scope.text= $sce.trustAsHtml('TEST>19 XYZ </= This is not showing up in ng-bind-html />');
}]);
HTML
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<script data-require="angular.js@*" data-semver="1.3.8" src="http://code.angularjs.org/1.3.8/angular.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body ng-controller="IndexController">
<input style="width:100%" type="text" ng-model="text">
<div ng-bind-html="text"></div>
</body>
</html>