Try this:
First, in $:/core/ui/TagTemplate, replace this line:
<$macrocall $name="list-tagged-draggable" tag=<<currentTiddler>>/>
with this:
<ol><$macrocall $name="list-tagged-draggable" tag=<<currentTiddler>> itemTemplate="NumberedListTemplate"/></ol>
This will cause the contents of the tag dropdown to be wrapped within an <ol>
element (an “ordered list”, aka “numbered bullet items”). It also tells the <<list-tagged-draggable>>
macro to use a custom list item template to render the list of tagged tiddlers.
Next, create a new tiddler named “NumberedListTemplate”, containing:
<li><$link/></li>
This provides the custom list item template that wraps each tag item link within an <li>
element, which will display the links with bullets… and, since the first change wraps the entire list within an <ol>
element, the bullet items will be shown as numbers.
AND… for an extra bit of nice formatting, in the first change above, instead of using just a plain <ol>
, use
<ol style="max-height:30vh;overflow:auto;">
This will add scrolling to the dropdown list of tagged tiddlers if it is longer than 30vh (30% of the browser window height).
enjoy,
-e