On Monday, August 17, 2020 at 7:29:02 PM UTC-7, kebi wrote: > > My tiddlers have the following titles > > Title > - Title/1 > - Title/2 > - Title/3 > > When using transclude in Title (currentTiddler) I want to show all the sub > tiddlers, something like this: > <$transclude tiddler= <<tiddlers whose title starts by " currentTiddler/ " > >> /> >
Use the <$list> widget to transclude each "sub tiddler", like this: <$list filter="[prefix<currentTiddler>] -[<currentTiddler>]"> <$transclude mode="block" /> </$list> Note: This filter finds *all* tiddlers that start with the title of the current tiddler. This includes the current tiddler. Of course, you don't want to transclude the current tiddler into itself which would result in this error: *Recursive transclusion error in transclude widget* Thus, the filter also removes the current tiddler from the results, so that only the sub-tiddlers are transcluded. enjoy, -e -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/eb83bd35-c7f3-4a2a-bcd6-c9e0fc3e9f8ao%40googlegroups.com.

