How to make numbered list of tiddlers with a given tag?

94 views
Skip to first unread message

Chuck R.

unread,
Sep 29, 2020, 8:01:02 AM9/29/20
to TiddlyWiki
I have TW 5.1.19.

I would like to have a "Garlic Main" tiddler which will list all tiddlers, in a numbered list, or all tiddlers that have a tag "subGarlic".

Here is how to list tiddlers with a certain tag, but it is not a bulleted list.

`<$list filter="[tag[subGarlic]sort[title]]"/>`

I would prefer not to have any add-ins for TW. I often use TW to list studies on a "main" topical page, titled "Garlic main", then I link to another tiddler which would summarize the findings, and provide a link to the full study.

Does anyone know how to do this? It appears it is not in my notes anywhere.

Thank you!

Atronoush Parsi

unread,
Sep 29, 2020, 8:09:39 AM9/29/20
to tiddl...@googlegroups.com

--
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 tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/769055a1-80ae-4b73-a044-98bc04df958an%40googlegroups.com.

Chuck R.

unread,
Sep 29, 2020, 11:33:32 AM9/29/20
to TiddlyWiki
Thank you! It worked. I could not find this in the docs anywhere.

TW Tones

unread,
Sep 29, 2020, 6:35:58 PM9/29/20
to TiddlyWiki
Chuck

Here are a few alternates that address you requirement, try it on tiddlywiki.com

Also make a copy of your wiki and do an upgrade https://tiddlywiki.com/upgrade.html when practical unless you know something is going to stop working.
It is best (not essential) to keep up with releases especially on active and changing wikis

{{{ [tag[TableOfContents]sort[title]] }}}

<hr>

<$list filter="[tag[TableOfContents]sort[title]]">

</$list>


<hr>


<$list filter="[tag[TableOfContents]sort[title]]" template="$:/
core/ui/ListItemTemplate">

</$list>


<hr>


<$list filter="
[tag[TableOfContents]sort[title]]">

* <$link/>
</$list>


<hr>




<$list filter="
[tag[TableOfContents]sort[title]]">
<li><$link/></li>
</$list>


<ul>
<$list filter="
[tag[TableOfContents]sort[title]]">
<li><$link/></li>
</$list>
</ul>


<ol>
<$list filter="
[tag[TableOfContents]sort[title]]">
<li><$link/></li>
</$list>
</ol>


Regards
Tones
Reply all
Reply to author
Forward
0 new messages