Folks,
I just saw this opportunity for a single tiddler solution, which applies a few tricks I have gathered over the years.
It lists all tiddlers with a given tagname in its own sidebar tab.
tag-tagname.json (766 Bytes)
What is the trick?
- It is a single tiddler with the title “tag: tagname”
- Edit or clone it and simply rename “tagname” to your preferred tag.
- All done!
Behind the scenes
- It shows you how to extract the tagname from the title
- But not until is gets the currentTiddler which is not available in the sidebar. Yes you could use
<<currentTab>>
however this demonstrates finding the “code tiddler in use”. #1- This tiddler works in the SideBar and the story.
- It shows how to split a title to extract the suffix, in this case the tagname.
- It shows how easy it is to add a button, to each list item, in this case to edit the tiddlers in the list.
- You can also set the caption field if the tagname is too much for the sidebar.
So apart from what this single tiddler demonstrates its very convenient, just clone it, and rename to create another tab to quickly access your tag and the tiddlers so tagged.
#1. Code Tiddler in use
I will document more on this in another topic it’s quite a useful feature for design and debug.