I have the following text, which is properly saved into database, and served back to browser:
Very very
long text
But in my angular application I get
Very very long text
<td [innerHTML]="client.text"></td> // doesn't work
<td>{{client.text}}</td> // doesn't work
// What I wish to achieve displayed into the browser:
Very very
long text
How am I able to achieve the consistency as above? I have a textarea which displays the text properly, however I wish to display it in a div/span/td element. Is this possible?