Hi!
When I write a text into a text area with a some new lines or carry returns (i dont know wich is the correct word to describe \n\r) like this:
Example text:
----------------------------------
Hello
This is my text
With some carry returns
--------END--------------------
and later I save it into a mongodb, this saves for example "Hello\n\rThis is my test\n\r\n\rWith....."
But later with EJS when i try to print, the text is printed in plain text: "Hello This is my text With some...."
How can I print correctly?
Thanks!