Get all tags starting with prefix

Hi,

how can i use a list filter to get all tags tagged to current tiddler that start with prefix “@” , and is it possible to display them in pill format ?

i tired that
<$list filter ="[<currentTiddler>all[tags]prefix[@]]">
but ended up getting all tags on my tiddler and not only the ones with a Prefix “@”

Thank you

Hi, Try: [all[current]tags[]prefix[@]]
see: https://tiddlywiki.com/#tags%20Operator

2 Likes

Now use it this way

<$list filter="[all[current]tags[]prefix[@]]">
<<tag>>
</$list>
  • Tag operatets on current tiddler by default.
1 Like

Thank you that worked