ce0b583 ←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
13 unmodified lines
14
15## countries by year
16
17```dataview
18TABLE join(unique(map(filter(flat(rows.tags), (t) => startswith(t, "country/")), (t) => replace(t, "country/", ""))), ", ") AS "Countries"
18TABLE length(unique(map(filter(flat(rows.tags), (t) => startswith(t, "country/")), (t) => replace(t, "country/", "")))) AS "Countries", join(unique(map(filter(flat(rows.tags), (t) => startswith(t, "country/")), (t) => replace(t, "country/", ""))), ", ") AS "List"
19WHERE date
20SORT date DESC
21GROUP BY dateformat(date, "yyyy") AS "Year"
22```
19 unmodified lines