How have a long string and would like to seperate some of the text with a newline.
it seems \n or \n does not work or
What is in database:
description: "Hello \n world"
When I retrieve the data I get
Hello world
Instead of:
Hello
World
Wrap content in <pre>
tag, so that will get formatted correctly on view.
<pre>{{description}}</pre>
Demo Here
Other options is to use ng-bind-html
directive + add ngSanitize
module in app depenency
<p ng-bind-html="description"></p>
Plunkr
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With