3de4733 ←15ade8dantonApr 19, 2026 api

edit index.md via macOS

modified code block TABLE join(unique(map(filter(flat(rows.tags), (t) => startsw...
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", length(rows) AS "Trips"
18TABLE join(unique(map(filter(flat(rows.tags), (t) => startswith(t, "country/")), (t) => replace(t, "country/", ""))), ", ") AS "Countries"
19WHERE date
20SORT date DESC
21GROUP BY dateformat(date, "yyyy") AS "Year"
22```
19 unmodified lines