Hello,
Out of all tiddlers where currentTiddler is tagged to: Only list the tiddler that have a field called "m".
Show the title of that tiddler as a tagpill, and behind it the value of field "m".
The code below works but does not show the content of field "m" behind the tagpill.
<$list filter="[all[current]tags[]sort[title]has[m]]" template="$:/core/ui/TagTemplate" storyview="pop">
{{!!m}}
</$list>
How do I do that?
Thank you,