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:MeetingListWithoutCurrentTiddler/answer

27th March 2021 at 10:59am
<ul>
    <$list filter="[tag[Meeting]!sort[at]]">
        <li><$link to={{!!title}}>{{!!title}}</$link></li>
    </$list>
</ul>

If you happened to remember from an earlier exercise that the $link widget creates a link to the current tiddler if you don't give it any attributes or body text at all, you could also just say this:

<ul>
    <$list filter="[tag[Meeting]!sort[at]]">
        <li><$link /></li>
    </$list>
</ul>
Go to question: Ex:MeetingListWithoutCurrentTiddler