When receiving text from my angular controller to display in the view, I want it to appear as formatted text instead of raw HTML. To achieve this, I am using the following code snippet which currently outputs a read-only textarea displaying the html tags:
<div class="well" ng-repeat="field in model.viewFields">
{{field.Name}}
<textarea disabled="true" style="height: 200px; width: 100%; resize: none">{{field.Value}}</textarea>
</div>
What is an alternative element or approach that could be used in place of the textarea to properly render the {{field.Value}} HTML as formatted text?