I use TW-Solutions brillantly created by @Mohammad for quite a while now.
I set a lot of different keywords in all my tiddlers. Is there a simple way to list all the different keywords in a tiddler to see them all in one view?
Here’s the base filter you’ll want: [each:list-item[keywords]]
And if you’d like a list of clickable keyword-pills, we can reuse the template Mohammad’s already kindly provided:
<$list filter="[each:list-item[keywords]]">
{{||$:/plugins/kookma/solution/template/keywords}}
</$list>
If you wanted to restrict the keyword list to those found on a particular a subset of tiddlers, you could also extend the filter, e.g. [tag[Solution]each:list-item[keywords]]
2 Likes