This page is part of a static HTML representation of the TiddlyWiki at https://tiddlywiki.com/

Order of Tagged Tiddlers

 29th July 2022 at 2:15pm

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:

  1. Start with any that are declared in the list field of the tag tiddler, in the order given there.
  2. In each remaining tiddler T, look for a list-before field. If this has a tiddler title as its value, place T just before that one.
    • As a special case, if the field exists but its value is empty, place T at the very start of the list.
  3. In each remaining tiddler T, look for a list-after field. If this has a tiddler title as its value, place tiddler T just after that one.
    • As a special case, if the field exists but its value is empty, place T at the very end of the list.
  4. 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.