Well, here's a possible start. Perhaps not exactly what you want to end up 
with, but perhaps it might do for now.

In your tiddler titled: *Unsorted*
That should have a tag: *TableOfContents*
Put this in its text field:
<<list-links filter:[!has[tags]!prefix[$:/]]>>

The filter: *[!has[tags]!prefix[$:/]]* does 3 things

1. Since we have not told the filter what are the input titles to look for, 
it defaults to all System & Normal Tiddlers (omitting Shadow tiddlers)

2. This part: *has[tags]*  :would return all tiddlers that have tags.
    The *!* instructs the filter to be a negation, thus:  *!has[tags]*  
:returns tiddlers that have an empty tags field (no tags).

3. *prefix[$:/]* would return only tiddlers whose titles begin with $:/ - 
which in this case would be all System tiddlers.
   We want the opposite of that, and once again the *!* negates the return, 
so:  *!prefix[$:/]* :returns all the non-system tiddlers.

The <<list-links .... >> <https://tiddlywiki.com/#list-links%20Macro> macro 
creates the bullet point list.

Hope that helps.


On Friday, February 15, 2019 at 5:04:34 PM UTC+7, Blue Steel wrote:
>
> I'm new to TW and managed to create a basic table of contents, but I can't 
> figure out how to create a section which will automatically show all my 
> untagged Tiddlers. I want this section so I can quickly create Tiddlers and 
> give them a tag for sorting later, as well as show any Tiddlers I've 
> forgotten to tag.
>
> In the TableOfContents note I've got a list field currently with: Tasks3 
> Tasks [[Tasks 2]] Unsorted. I want to make 'Unsorted' into the section 
> header for my untagged notes. 
>

-- 
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 [email protected].
To post to this group, send email to [email protected].
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.

Reply via email to