Sorting Notes
Manual sorting#
You can sort notes by right-clicking the parent note in the Note Tree and selecting Advanced -> Sort notes by ... This will sort existing notes, but will not automatically sort future notes added to this parent note.
The sorting dialog allows:
- Sorting by title, creation or modification date.
- Changing sorting direction can also be adjusted (ascending or descending).
- Ensuring folders are displayed at the top.
- Natural sort, based on the sorting rules of a particular language.
Automatic/Permanent Sorting#
Child notes can be automatically sorted by attaching specific labels to the parent note:
| Label | Description |
|---|---|
#sorted | Keeps child notes sorted by title alphabetically. When given a value, it will sort by the value of another label instead. If one of the child notes doesn't have the specified label, the title will be used for them instead. |
#sortDirection | If
|
#sortFoldersFirst | If sorted is applied, folders (notes with children) will be sorted as a group at the top, and the rest will be sorted. |
#sortNatural | Sort numbers naturally instead of alphabetically, so 2 comes before 10. |
#sortLocale | The language code driving the natural sort (e.g. zh-CN, de). Only meaningful together with #sortNatural. |
#top | If sorted is applied to the parent note, keeps given note on top in its parent. |
#bottom | If sorted is applied to the parent note, keeps given note on bottom in its parent. |
Sorting is done by comparing note properties or specific labels on child notes. There are four sorting levels, with the first having the highest priority. Lower priority levels are applied only if higher priority comparisons result in equality.
- Top Label Sorting: Child notes with the
#toplabel will appear at the top of the folder. - Bottom Label Sorting: (Introduced in Trilium 0.62) Child notes with the
#bottomlabel will appear at the bottom of the folder. - Property/Label-Based Sorting: Sorting is based on the parent note's
#sortedlabel:- Default Sorting: If
#sortedhas no value, notes are sorted alphabetically. - Property Sorting: If
#sortedis set totitle,dateModified, ordateCreated, notes are sorted based on the specified property. - Label Sorting: If
#sortedhas any other value, this value is treated as the name of a child note's label, and sorting is based on the values of this label. For example, setting#sorted=myOrderon the parent note and using#myOrder=001,#myOrder=002, etc., on child notes.
- Default Sorting: If
- Alphabetical Sorting: Used as a last resort when other criteria result in equality.
All comparisons are made string-wise (e.g., "1" < "2" or "2020-10-10" < "2021-01-15", but also "2" > "10").