It would be so straightforward and consistent if the tag pill would display in italics for tags whose home-tiddler does not exist, as in this graphic:
Quick demo of this tiny tweak: 🎯 Quick demo — ... of tag-pill italics iff missing
While using “off-the-shelf” TiddlyWiki, one has to click on the tag pill, and look at the drop-down, in order to see whether the tag’s governing tiddler appears in italics or not.
I realize that some TiddlyWiki users don’t tend to put actual content into the tiddlers that serve as tags. Perhaps those folks would not care about this behavior, but would anyone specifically prefer not to incorporate this info? (Even if you don’t usually interact directly with these tag-governing tiddlers, the italics could confirm at a glance that there’s no info there, including in its list field.)
What do you think, @TW_Tones? This strikes me as a natural mini-feature of reimagine-tags (or is it reimagin-tags?)…
In 5.3.2+, the tweak is super-easy, thanks to conditional shortcut syntax:
In $:/core/macros/tag the string <$view tiddler=<<__tag__>> field="title" format="text" />
is replaced by:
<%if [<__tag__>!is[missing]] %> <$view tiddler=<<__tag__>> field="title" format="text" />
<% else %>
//<$view tiddler=<<__tag__>> field="title" format="text" />//
<% endif %>