How to list last 10 modified tiddlers with title not contain certain word in a tiddler?

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]]
  1. [!is[system]!is[shadow]]: all non-system tiddlers nor tiddlers in plugins
  2. !sort[modified] sort by the modified field, but in descending order
    3.!suffix[IMG] do not include tiddlers captured so far that end in “IMG”
  3. limit[10] get only the first 10 tidders

hope this works! :smiley: