I am trying to add the following code.
$scope.journals = [
{title: "Journal", content: "This is content <br>"}
]
The HTML that I have is:
<div ng-repeat="journal in journals">
<h1>{{journal.title}}</h1>
<span>{{journal.content}}</span>
</div>
However the "br" Tag is showing as just plain text and not html. How can I fix that?