Can't output literal newlines from Text formulas

Seems like this should just work:

just a thought, but does + “< b r>” work? (remove the spaces)

Thanks, updated the backlog! :muscle:

1 Like

Where did this land?

Now, in 2025, the escape sequence for the newline seems to work; however, the escape sequence for the tab i.e. \t does not work and gets passed through literally:

"parent\n\tchild"

// produces:
parent
\tchild

// instead of:
parent
	child

Of course the line breaks are only visible in views where the field can show multiple lines, for example not in table/grid views. But the escape character "" does not get passed it the output literally, which is great.

Use case for \t

  • Nested breadcrumbs for copiable textual output
  • Nested information for quick visual scanning
  • Adherence to established escape sequences
1 Like