Could not think of a better thread title, but this is a way to show text in, for example a letter. I have written it as a function:
<function name="Letter" parameters="s"><![CDATA[
s = Replace(s, "|", "<br/><br/>")
msg ("<div style=\"background-color:white;margin:20px;font-family: monospace\"><br/>" + s + "<br/> </div>")
]]></function>
Call it like this:
msg("You read the letter")
Letter("Dearest Margo|I do hope this missive finds you well. The money is in the teapot.|Yours|Cecile")
The string you send to Letter appears on screen in a new format. The vertical bars are converted to line breaks byt the way. If you look inside the function you can see the formatting rules. in this case "monospace" font to look like a typewriter, and a white background (works best if the background is not white for the rest of the text!).
If you start messing around, be aware that everything needs to go inside one call to msg, which is why I used <br /> rather than multiple msg statements. I tried to get the CSS padding attribute without success.