From 4289367b7f9f0c9fa7ce8b974408053bed2b6a4b Mon Sep 17 00:00:00 2001 From: Jermolene Date: Wed, 1 Jan 2014 18:37:46 +0000 Subject: [PATCH] Add some more filter examples --- editions/tw5.com/tiddlers/concepts/TiddlerFilters.tid | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/editions/tw5.com/tiddlers/concepts/TiddlerFilters.tid b/editions/tw5.com/tiddlers/concepts/TiddlerFilters.tid index 5446537b3..ec71c942d 100644 --- a/editions/tw5.com/tiddlers/concepts/TiddlerFilters.tid +++ b/editions/tw5.com/tiddlers/concepts/TiddlerFilters.tid @@ -1,7 +1,8 @@ -created: 201308270800 -modified: 201311242006 +created: 20130827080000000 +modified: 20140101183713761 tags: concepts title: TiddlerFilters +type: text/vnd.tiddlywiki Filters are used in TiddlyWiki to choose tiddlers by specifying simple match criteria. @@ -16,6 +17,8 @@ The mechanism is easiest to understand by first presenting some example filter s |`[title[MyTiddler]]` |The single tiddler titled `MyTiddler` (if it exists) | |`HelloThere Introduction` |The tiddlers titled `HelloThere` and `Introduction` (if they exist) | |`[tag[important]]` |All tiddlers with the tag `important` | +|`[tag[important]tag[secret]]` |All tiddlers with both the tag `important` and the tag `secret` | +|`[tag[important]!tag[secret]]` |All tiddlers with the tag `important` but not the tag `secret` | |`[!tag[important]]` |All tiddlers not with the tag `important` | |`[tag[important]sort[title]]` |All tiddlers with the tag `important` sorted by title | |`[tag[important]!sort[title]]` |All tiddlers with the tag `important` reverse sorted by title |