Is there a way to populate a tiddler with a list of untagged, user-created tiddlers that aren’t system, drafts, or image tiddlers?
[untagged[]!is[system]!has[draft.of]]
Images would depend on how you tagged them, or perhaps a longer filter involving the type
field, one for each possible image mime type (unless someone knows a trick to make that easier?). Something like…
[untagged[]!is[system]!has[draft.of]type[]!match[image/jpeg] ... ]
just add !is[image]
to @CodaCoder 's filter:
<<list-links "[untagged[]!is[system]!has[draft.of]!is[image]]">>
-e
Since TW v5.1.23 the is-operator can handle all 3 of your cases. So the following filter should be tested too:
[untagged[]!is[system]!is[draft]!is[image]]
Also see: untagged operator
I tried both yours & pmario’s solutions, but all that’s showing up for either are drafts.
I did test it with tiddlywiki.com - Advanced Search - Filter tab and it seems to work as expected.
For me it does not show any drafts – So the draft tiddler in the screenshot is not in the list in the preview
I finally got it to work, thank you. Not sure what I was doing wrong before.