Expanded example

This commit is contained in:
nameanyone 2015-07-08 23:26:15 -07:00
parent d327d6fbed
commit 4cfb6813f5
1 changed files with 12 additions and 0 deletions

View File

@ -4,3 +4,15 @@ type: text/vnd.tiddlywiki
<<.operator-example 1 "[recent[1]]" "tiddlers modified yesterday and today">>
<<.operator-example 2 "[recent:created[14]]" "tiddlers created within the last 14 days">>
The filter can be used to highlight new items in a list. For example:
<$macrocall
$name="wikitext-example-without-html" src=
"""
<ul>
<$list filter="[tag[ReleaseNotes]!<currentTiddler>!sort[modified]]">
<li>
<$link><$view field="title"/></$link><$list filter="[<currentTiddler>recent[90]]"> @@color:red;^^new^^@@</$list>
</li>
</$list>
</ul>
"""/>