This is a stripped-down version of a single section of Grok TiddlyWiki, optimized for fast loading and readability by search engines. Some features are missing.

For the full Grok TiddlyWiki experience, please visit the wiki version of this page.

Ex:ContainingCurrentTiddler/answer

21st May 2021 at 3:30pm
<$set name=previousCurrentTiddler value=<<currentTiddler>> >
<ul>
    <$list filter="[tag[Meeting]!sort[at]]">
        <li>An item on <<previousCurrentTiddler>>: <$link to=<<currentTiddler>>/></li>
    </$list>
</ul>
</$set>

It turns out this is a sufficiently common pattern that there's an attribute you can add to the $list widget to make it easier, called variable. This attribute defaults to currentTiddler, but if you set it to something else, the current tiddler will be unmodified and that other variable will contain the current item being listed:

<ul>
    <$list filter="[tag[Meeting]!sort[at]]" variable="meeting">
        <li>An item on <<currentTiddler>>: <$link to=<<meeting>>/></li>
    </$list>
</ul>
Go to question: Ex:ContainingCurrentTiddler