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

 25th September 2024 at 6:44pm
<ul>
  <$list filter="[search{$:/SiteTitle}]">
    <li><$link to=<<currentTiddler>>><<currentTiddler>></$link></li>
  </$list>
</ul>

Now might be a good time to point out that there's a faster way to create a bulleted list of links to tiddlers that match a filter. I didn't tell you about this procedure earlier so you would have to learn to use the more general $list widget, but now that you've learned, the list-links built-in procedure is a handy shortcut. We can rewrite the above as simply:

<<list-links "[search{$:/SiteTitle}]">>

Also note that creating a link to the current tiddler with text of the current tiddler's title can be reduced to just:

<$link />
Go to question: Ex:TiddlersContainingWikiTitle