I am using angularjs. Here I have a string fetched from database and it is in html form like this
$scope.data = '<p>this is first line </br> this is second line</p>';
and when i dispaly it like
{{$scope.data}}
It actually come as it is without html formatted like
<p>this is first line </br> this is second line</p>
But I want as
this is first line
this is second line