Typst Forum
How do I sort an array of dictionaries by more than one key?
Questions
scripting
quachpas
November 26, 2024, 3:03pm
2
You can give a tuple for the key.
#arr.sorted(key: it => (it.a, it.b))
show post in topic