Report Action removes leading and trailing spaces

It appears that when building a string for a Report action, each part is trimmed so that leading and trailing spaces are removed, but a single space is left.
For instance, " ABC " + " DEF" results in " ABC DEF" in the chat log. I have tried to create a Dynamic property, or a Marker trait with a space, but Markers can’t hold spaces, and Dynamic Properties just lose the space altogether when printed.

I would like to indent some texts, and sometimes it is useful to separate parts of a text with more than on space.

Do anybody have a workaround?

Could this be a HTML thing - do you have HTML enabled for the module ?

I reckon HTML “mode” might explain white space trimming. May not help in your case but using the HTML code   is one way to ensure the space is not dropped.

1 Like

Mark, you are indeed right!

" " works! I was thinking of alternatives to the normal space, but HTML did not occur to me.