As @holroy mentioned, and bit me for 36 seconds …
- It would be nice if you provide what you have until now (don’t be shy!).
- DataView only handles
.md
files, while DataViewJS handles all (many/most) files.
Until then, this is an example of how to limit/filter only on md files with DataViewJS:
```dataviewjs
let files = app.vault.getFiles();
let filteredFiles = files.filter(f => ["md"].includes(f.extension));
dv.table(["Name", "Path", "Type"],
filteredFiles.map(f => [f.name, f.path, f.extension])
);
```
Drop this in a note in a root, and you should get the entire vault.
Cheers, Marko