<$list filter={{$:/DefaultTiddlers}}>
...do things here only if the title of the current tiddler isn't in the list of defaults...
</$list><$list filter="[is[current]!title[Home]]">
This tiddler is not Home
</$list><$list filter="[<currentTiddler>] -[{$:/DefaultTiddlers}splitregexp[\n]!is[blank]]">
...do things here only if the title of the current tiddler isn't in the list of defaults...
</$list>I think this will do it:<$list filter="[<currentTiddler>] -[{$:/DefaultTiddlers}splitregexp[\n]!is[blank]]">
...do things here only if the title of the current tiddler isn't in the list of defaults...
</$list>
SomeTitle SomeOtherTitle [tag[startup]] -NotThisTitle<$list filter="[<currentTiddler>!subfilter{$:/DefaultTiddlers}]">
this is not a default tiddler
</$list>