I know the way
{{$:/core/ui/SideBar/Recent}}
, to embedded recent tiddlers.
But I just need last 10 tiddlers, and the title not ends with “IMG” how to make it.
I know the way
{{$:/core/ui/SideBar/Recent}}
, to embedded recent tiddlers.
But I just need last 10 tiddlers, and the title not ends with “IMG” how to make it.
try this:
[!is[system]!is[shadow]!sort[modified]!suffix[IMG]limit[10]]
[!is[system]!is[shadow]]
: all non-system tiddlers nor tiddlers in plugins!sort[modified]
sort by the modified field, but in descending order!suffix[IMG]
do not include tiddlers captured so far that end in “IMG”limit[10]
get only the first 10 tiddershope this works!