On Saturday, May 16, 2020 at 2:22:14 PM UTC-7, Mark S. wrote:
>
> 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>
>
While $:/DefaultTiddlers is most often just a list of literal titles, the
contents are actually a filter definition and might be something like this:
SomeTitle SomeOtherTitle [tag[startup]] -NotThisTitle
Your solution will only work if:
* each item is on a separate line (i.e., using \n)
* each item is a literal title
Here's a syntax that works for any definition of $:/DefaultTiddlers:
<$list filter="[<currentTiddler>!subfilter{$:/DefaultTiddlers}]">
this is not a default tiddler
</$list>
enjoy,
-e
--
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 view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/953e5cf7-ec8e-4146-a20e-700244755d3b%40googlegroups.com.