Limit items in transcluded list?

Hi. Here’s the code I’m using for a transcluded list:

<$list filter="[tag[Status]!sort[created]]" join="<hr>">
<span class="editlink"><$link to=<<currentTiddler>>>✏️</$link></span><$transclude mode=inline/>
</$list>

I’d like to know if there’s a way to limit the number of items displayed. For example, display only the most recent 3 items. Is this possible? Thank you.

Replace this line…

with

<$list filter="[tag[Status]!sort[created]limit[3]]" join="<hr>">

or

<$list filter="[tag[Status]!sort[created]]" limit="3" join="<hr>">
1 Like