28th February 2024 at 1:13pm
The tag macro generates a tag pill for a specified tag. Clicking the tag pill opens a dropdown. This can be compared to the tag-pill Macro which also features other parameters.
Parameters
- tag
- The title of the tag, defaulting to the current tiddler
CSS classes
New in vv5.3.4tc-tag-missing
- This class is defined if a tag does not exist as a tiddler.
tc-tag-exists
- This class is defined if a tag does exist as a tiddler
Defining the class
To define the tc-tag-missing
class a stylesheet tiddler needs to be created. The default font-style for missing tiddler links is italic, so it's used for the example code below. Eg:
title: myTagsStylesheet
tag: $:/tags/Stylesheet
.tc-tag-missing {
font-style: italic;
}