faee492 ←330899fantonApr 19, 2026 api

edit index.md via macOS

modified code block TABLE length(unique(map(filter(flat(rows.tags), (t) => start...
M /anton/undefined +0 -0
32 unmodified lines
33
34## cities by year
35
36```dataview
37TABLE join(unique(map(filter(flat(rows.tags), (t) => startswith(t, "city/")), (t) => replace(t, "city/", ""))), ", ") AS "Cities"
37TABLE length(unique(map(filter(flat(rows.tags), (t) => startswith(t, "city/")), (t) => replace(t, "city/", "")))) AS "Cities", join(unique(map(filter(flat(rows.tags), (t) => startswith(t, "city/")), (t) => replace(t, "city/", ""))), ", ") AS "List"
38WHERE date
39SORT date DESC
40GROUP BY dateformat(date, "yyyy") AS "Year"
41```