A pokemon pokedex in markdown format
This code displays a list of all Pokémon sorted by total points. The dataview queries looks like:
```dataview
LIST link(rows.file.link, rows.name)
FROM "Pokemon"
WHERE total != null
GROUP BY "**" + total + "**"
```
LIST link(rows.file.link, rows.name)
FROM "Pokemon"
WHERE total != null
GROUP BY "**" + total + "**"