in the controller I have a say $ scope.question variable.
$scope.question = "Hi this is <br/> book";
The html page uses this variable, for example {{question}}.
<div class="question"> 1. {{question}} </div>
I need output with line break ... But instead, it displays as a string ... how to parse html tags.
angularjs
bharath
source share