Imagine having the following text:
$scope.text = 'This is line one\nthis is line two';
and you want to display it within a div container using AngularJS
<div>{{text}}</div>
How can you ensure that the text is displayed with the line break intact? Currently, it appears as:
This is line onethis is line two