Quote:
Originally Posted by devilsknite1
SO is there really no way to display line breaks in the GUI even though it's in the file itself?
|
Line breaks aren't supposed to be visible in character form, if that's what you're trying to do. Normal HTML rendering converts them to a space.
If you want them to you have to escape them...
PHP Code:
for (temp.line: temp.lines) {
temp.line @= "\\n"; // Puts \n at the end of each line.
}
object.setlines(temp.lines);
I can't possibly imagine why you would want to do that though.