i have a text showing in the angular.
var text = 'The Zones We are Looking for a Reversal is6000<br><br>We Will Keep Close Eyes on it <br>But Keep in Mind That if We Break Below 6000 USD<br><br>Then This Time We Expect a Hard PullBack Towards 5250-5500 USD Levels<br><br>'
<div class="text">
{{text}}
</div>
.text {
word-wrap: break-word;
line-height: 150%;
white-space: pre-wrap;
}
why on the html it is still showing the '< br >' instead of the breaking lines?