Carry-over line breaks not viewable in Text View or Text Output Widget (legacy) nodes

I finally figured this out; I discovered the answer on another thread. It really boils down to a misunderstanding on my part of how line breaks are actually formatted in the Text View node, and interpreted in Chromium (or any browser). The answer is to replace the line break “\n” with “
” in the String Manipulation node with:
regexReplace(column(“Column”),“\n”,“<br>”)

2 Likes