Calling only .md files with Dataview

As @holroy mentioned, and bit me for 36 seconds :wink:

  1. It would be nice if you provide what you have until now (don’t be shy!).
  2. 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 :nerd_face: