By default, TiddlyWiki content uses standard HTML formatting for newlines; i.e., text is automatically "flowed" and word-wrapped without regard to embedded newlines. Unlike HTML, TiddlyWiki uses a doubled newline to indicate a paragraph break (HTML uses a <p> tag for this purpose). There are several ways to bypass this automatic formatting.
For example, to "preserve" all whitespace as-is, you can write:
<div style="white-space:pre">
...your content here...
</div>
You can also use TiddlyWiki wikitext syntax to achieve a similar (but not identical) result:
```
This text is multi-line and preserves all whitespace.
It also uses a fixed width font (like a typewriter)
and surrounds the content with a border and background
```
Hope this helps...
enjoy,
-e