<<list-links filter:[!has[tags]!prefix[$:/]]>>--
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 post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/5d0f72ac-6f15-4001-8bea-bc8984e4d03f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<<list-links filter:"[!is[system]untagged[]]">>Can I suggest you look into learning how to make your own set of recursive macros to do what the toc macro does? You can research how the existing ones work or possibly search for posts of mine on this previously. If you can find it let me know.
The fact is you can do anything you want in a to if you build it yourself.
Regards
Tony
Perhaps not exactly what you want to end up with.
<<list-links filter:"[tag[Unsorted]]>>
\define each-level(filter)
<$list filter="$filter$" variable=nul>
[[$(currentTiddler)$]]<br>
</$list>
<$list filter="[is[current]tagging[]]">
<<each-level $filter$>>
</$list>
\end
\define list-toc(tiddlername filter)
<h2>Top of TOC</h2>
<$tiddler tiddler="$tiddlername$">
<$list filter="[is[current]tagging[]]">
<<each-level $filter$>>
</$list>
</$tiddler>
\end
<<list-toc TableOfContents "[is[current]!tag[hide]]">>\define each-child(filter)
[[$(currentTiddler)$]]<br>
<$list filter="[parent[$(currentTiddler)$]]">
<<each-child $filter$>>
</$list>
\end
\define list-tocP(tiddlername)
<$tiddler tiddler="$tiddlername$">
[[$tiddlername$]]<br>
<$list filter="[parent[$tiddlername$]]">
<<each-child>>
</$list>
</$tiddler>
\end
<<list-tocP "New Home">>