1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-09 05:56:50 +00:00
TiddlyWiki5/editions/prerelease/tiddlers/staging/filters/examples/recent.tid

19 lines
645 B
Plaintext
Raw Normal View History

2015-07-03 22:31:37 +00:00
tags: [[recent Operator]] [[Operator Examples]]
title: recent Operator (Examples)
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">>
2015-07-09 06:26:15 +00:00
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>
"""/>