What is the simple filter to list all tiddlers from a given inputFilter that are not of below types?
- application/x-tiddler-dictionary
- application/json
Note: a tiddler with no type or empty type is a text/vnd.tiddlywiki.
\function inputFilter() [tag[someTag]]
<$list filter="your simple filter">
<$link/>
</$list>
It looks like your response got lost! I’ll quote it here so we’ve got everything in one thread:
And to answer your question, you could simplify
[get[type]!match[application/json]!match[application/x-tiddler-dictionary]]
[!has[type]]
down to
[!type[application/json]!type[application/x-tiddler-dictionary]]