I am having problems displaying chucks of text, with paragraphs, from a database.
For example, if I pass in a string such as:
local lotsOfText = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\nNunc euismod justo sapien, at sollicitudin lacus. Quisque vestibulum commodo felis id posuere."
Then the \n\n creates a paragraph break in the text, which is what I would expect.
However, if I retrieve exactly the same string as above from a database, for example:
local lotsOfText = row.Info
Then the \n\n are displayed on the screen, rather than paragraph break.
Any help would be gratefully received!
Thanks everyone for their ideas and suggestions. Based on what BMitch said, I tried a different approach and believe this is actually a problem with my database, rather than Lua or the string itself.
If I create a DB table in code and insert the string, I can them retrieve it correctly. I thin k this is due to the data type I was using, or maybe something to do with how I am editing data in Lita.