I want to display “done” (or prettier, a symbol) after the title in a list, if it has a tag “done”, code as below:
<$list filter="[tag[some-tag]sort[title]reverse[]]">
<div>
<$link to={{!!title}}>
<$view field="title" />
</$link>
<$reveal type="match" tag="done">
dddd
</$reveal>
</div>
</$list>
Although the tiddler has a tag “done”, “dddd” doesn’t show.
If replace “match” by “nomatch”, it shows.
What’s the problem?