이 문서는 https://tiddlywiki.com/languages/ko-KR/에서 티들리위키의 정적 HTML 표현의 일부입니다

subfilter Operator (Examples)

2021년 10월 30일 오후 10:34

Literal filter parameters can be used, but such cases are better rewritten without using subfilter:

[subfilter[one two three]addsuffix[!]]
→ same as one two three +[addsuffix[!]]

The subfilter operator can be used to dynamically define parts of a filter run. This is useful for sharing a common pieces of a filter across multiple filters.

For example, this variable:

  • recent-mods: [has[modified]!sort[modified]limit[5]]

can be used in one filter like this:

[tag[Filter Operators]subfilter<recent-mods>addsuffix[!]]
→ same as [tag[Filter Operators]has[modified]!sort[modified]limit[5]addsuffix[!]]

and in another similar filter like this:

[tag[ActionWidgets]subfilter<recent-mods>addprefix[!]]

Variables are not the only way to define dynamic subfilters. Text references can be used to load a subfilter from a tiddler field (see also Filter Parameter):

[subfilter{$:/StoryList!!list}limit[5]]
[subfilter{$:/StoryList!!list}subfilter<recent-mods>]