@Jon,
ExtraFiltersPlugin states that it requires TiddlySpaceFilters and
ImageMacroPlugin. Is that really the case? Or is it rather that some
functionality is only available if indeed those two are present?
Also, those filter rules do not seem to always combine. Looking at {has}
and {startsWith} it seems that the result list is always created based on
all tiddlers. Why is that? How about changing forEachTiddler, so that you
can run it against a preexisting set of tiddlers, e.g.
this.forEachTiddler = function(callback*, tids*) {
> var t*, ts = tids || tiddlers*;
> for(t in *ts*) {
> var tiddler = tiddlers[t];
> if(tiddler instanceof Tiddler)
> callback.call(this,t,tiddler);
> }
> };
I am just thinking that some of those additional filters are quite handy
for non-ts use-cases. So, perhaps ...is it a viable option to split them
into ExtraFiltersCode and ExtraFiltersTS?
Cheers, Tobias.
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/tiddlywiki/-/lk1Gp2o9GVUJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.