I have the following variable:
$scope.someVar= "Some<br>text<br>here";
When I call it in the HTML document with {{ someVar }} I get the following output:
Some<br>text<br>here
I would like the following output:
Some
text
here
What can I do so the HTML code is rendered?
Thank you in advance for all suggestions.
ng-bind-htmlfromngSanitizemodule. You can also$compileit from a directive