I have a text like:
Blablabla
Hello
How are you?
But it has to be stored in my database in the same text field like this:
Blablabla Hello How are you?
I am using Angular and I would like to know how to format the database text before displaying it inside the template like this.
<p>{{ value }}</p>
I know I should add a separator in the database but I don't know if it's possible to add a '\n' for example and then format the text before displaying it.