Inspired by this thread I realised we don’t indicate in the tag pill or other list macros if the “current tiddler is listed”, with tags it is typically in the list by definition.
- A modification/alternative list item template is all that is needed
- It could be used in other lists
In the tiddler $:/core/ui/TagTemplate it calls the list-tagged-draggable macro and I changed the itemTemplate to another $:/PSaT/listItems/underline-story
<$macrocall $name="list-tagged-draggable" tag=<<currentTiddler>> itemTemplate="$:/PSaT/listItems/underline-story"/>
$:/PSaT/listItems/underline-story contains;
<div class="tc-menu-list-item"><$list filter="[<currentTiddler>match<storyTiddler>]" emptyMessage="<$link/>">__<$link />__</$list></div>
The result is if the current tiddler, using the storyTiddler variable is listed in the tag pill dropdown it will be underlined.
For example this tag pill is on the tiddler “Browse Filter widget”
- Note the tag pill dropdown has a lot of features on it, due to my reimagine tags solution
