Hi Stobot,
This is indeed one of the few TW frustrating behavior.
On the display side you can use css to achieve the expected result.
Here is an extract of the StyleSheet I use to overcome this issue (and define left indentation)
(You have to put the following text in a tiddler
Title: whatever you like
Tags: $:/tags/Stylesheet) :
Type: text/css)
/* Simple Paragraph */
html .tc-tiddler-body p {
margin: 0.8em 0em 0.2em 0em;
padding: 0em 0em 0em 0em;
text-indent: 2em;
}
/* Unordered lists */
html .tc-tiddler-body ul {
margin: 0em 0em 0em 0em;
padding: 0em 0em 0em 3em;
}
html .tc-tiddler-body ul ul {padding-left: 1.25em;}
/* Ordered lists */
html .tc-tiddler-body ol {
margin: 0em 0em 0em 0em;
padding: 0em 0em 0em 3em;
}
html .tc-tiddler-body ol ol {padding-left: 1.25em;}
/* Lists item */
html .tc-tiddler-body li {
margin: 0.2em 0em 0em 0em;
padding: 0em 0em 0em 0em;
}
Best regards.
Eskha