Horizontal filter results

HI,

is it possible to get a filter return its results horizontally ., and not vertically

so for example ,taken out of the tiddly wiki website

<$list filter="[tag[ListWidget]sort[title]]"/>

This filter will return matching results vertically, top down , is it possible to get the results horizontally, preferable with a separator maybe ?

thanks in advance

If there is no empty line before the list widget, the results will all be on the same line.

For ideas on better formatting and using separators, see this tips and tricks post:

1 Like

Thankyou i will check it out

This is one I did just now.

<$set name=total filter="[tag[Macros]sort[title]count[]]">
<$list filter="[tag[Macros]sort[title]]" counter=item><$link/>{{{ [<item>!match<total>then[, ]else[.]] }}}</$list>
</$set>
1 Like

This works very well thanks tones !!