Formatting images in a filter list

Hello everybody!
I am struggeling with a simple image overview tiddler. The idea is to display all images in my wiki. Basically I got something like

<$list filter="[is[image]]">
<$link to={{!!title}}></$link>
<$transclude/>
</$list>

which runs fine so far. But the images differ in size and I would like to have them all displayed in the same size in this overviewer tiddler. With transclusion there is no way to control the image size. What I am looking for is something like

[img width=128 [//here pointing to currentTiddler//]]

running in my filter list. But I don’t know how to phrase that. How could I realize it?
Thanks a lot!

Best wishes
Oliver

Welcome to the forum, Oliver!

You might try the imagewidget instead, since they’re all images:

<$list filter="[is[image]]">
<$link to={{!!title}}></$link>
<$image source=<<currentTiddler>> width="200px"/>
</$list>

Hi Mark_S
Thats it! Excellent! Thank you so much! :+1:

Greetings
Oliver

…simplify into…

<$link/>