Reputation: 167
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
Upvotes: 5
Views: 1339
Reputation: 136144
Wrap content in <pre>
tag, so that will get formatted correctly on view.
<pre>{{description}}</pre>
Other options is to use ng-bind-html
directive + add ngSanitize
module in app depenency
<p ng-bind-html="description"></p>
Upvotes: 5