2022년 7월 29일 오후 2:15
When TiddlyWiki generates a list of the tiddlers that have a particular tag (e.g. the dropdown list of a tag pill), it orders the tiddlers using the following rules:
- Start with any that are declared in the
listfield of the tag tiddler, in the order given there. - In each remaining tiddler
T, look for alist-beforefield. If this has a tiddler title as its value, placeTjust before that one.- As a special case, if the field exists but its value is empty, place
Tat the very start of the list.
- As a special case, if the field exists but its value is empty, place
- In each remaining tiddler
T, look for alist-afterfield. If this has a tiddler title as its value, place tiddlerTjust after that one.- As a special case, if the field exists but its value is empty, place
Tat the very end of the list.
- As a special case, if the field exists but its value is empty, place
- If any tiddlers still remain, place them at the end of the list in ascending alphabetical order of title. The difference between capital and lowercase letters is ignored.
The ordering of tiddlers with a particular tag can be directly modified using drag and drop within a tag pill dropdown. The underlying list-tagged-draggable Macro can also be used elsewhere.