I’d like to transclude a list of tiddlers, preferably from a tag. Have them appear one after the other with some sort of separator between them (<hr>
?). How would I do this?
Give this a try:
<$list filter="[tag[HelloThere]]" join="<hr>"><$transclude mode=block/></$list>
or, for something with a little bit more formatting to show the titles as headings, with blockquotes for the contents:
<$list filter="[tag[HelloThere]]">
!<<currentTiddler>>
<<<
<$transclude mode=block/>
<<<
</$list>
enjoy,
-e
3 Likes