Pokedex-Markdown

A pokemon pokedex in markdown format


Project maintained by doctorfree Hosted on GitHub Pages — Theme by mattgraham

Dataview List of Pokémon

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 of Pokémon by Hit Points

LIST link(rows.file.link, rows.name)
FROM "Pokemon"
WHERE total != null
GROUP BY "**" + total + "**"