Is there a way to properly display HTML characters using HTML entities?
Take this scenario for example:
Let's say we have the following string:
$scope.myString = "<analysis mode="baseball" ftype="" version=" 1.83499" product="MDFDFAS" sequenceNumber="14"/>";
When attempting to output this in a pre tag, it doesn't show as expected.
<pre>{{ myString }}</pre>
The content remains unchanged. Is there a way to render the HTML within the pre tag?