Results 480 comments of AB1908

This seems doable via `dv.view()` at the moment but it's a decent idea.

Here's another snippet from @pseudometa: ```js const limit = 20; const notes = dv.pages('#seedling') .sort(() => 0.5 - Math.random()) .slice (0, limit) .map (note => note.file.link); dv.list(notes); ``` From https://discord.com/channels/686053708261228577/840286238928797736/962071289076539453

I usually prefer DV for viewing my tasks. I'll restart my investigation of sprint planning using tasks 👀

@youk you can use DVJS to grab info for non markdown files via the Obs API.

Can add a filter to this to remove `md` files. `.filter(t=>t.extension!="md")` should be the idea here.

I think adding a manual refresh command could help with this.

It's my first time doing this but how hard is it to do word counts? I could probably try tackling this since it seems like a minor indexing enhancement.

Sounds fairly painful, in that case. I wonder if it would make sense to add a separate plugin as a dependency that already does this well. In any case, I...