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 grouped by type. The dataview query looks like:

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

List of Pokémon by Type

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