$list first 6 only

How do I limit the output below to the first 6 items as sorted?

<div class="card-columns">
<$list filter="[tag[video]!sort[title]]">
<div class="card bg-transparent" style="max-width: 20rem;">
  <div class="card-body text-dark">
    <p class="card-text">{{!!text}}</p>
<div class="card-foot text-center text-primary" style="min-height: 25px;">,,{{!!title}},,</div>
  </div>
</div>
</$list>
</div>
1 Like

Does limit[6] not do it ?

e.g.

[tag[video]!sort[title]limit[6]]

1 Like

Thanks, staring at a list of operators and blanked.