Giving TW5 another go after a decade of TW Classic and just trying to get a simple list going. In this case I'd like the recent tiddlers as an unformatted list as in:
* TiddlerOne
* TiddlerTwo
* Etc...
When I use this:
<$list filter="[!is[system]has[modified]!sort[modified]limit[50]]">
<<currentTiddler>>
</$list>
I get the links in a row. When I use this:
<$list filter="[!is[system]has[modified]!sort[modified]limit[50]]">
* <<currentTiddler>>
</$list>
I get the same but with a * character preceding each link. So I add a space and some progess is made:
<$list filter="[!is[system]has[modified]!sort[modified]limit[50]]">
* <<currentTiddler>>
</$list>
This is slightly better but has unwanted (vertical) space between links.
What am I missing?