Dataview plugin snippet showcase

Be careful with that CSS, because it brute-force-removes the first column of a table.

But what if you had a table like this:

table rows.birthday as Birthday, link(rows.file.name) as Name
from "People/Friends & Family"
group by file.name

The “Birthday” column would be gone!

For @atiz’ use case, it would probably be best to ask the developer to introduce an optional 2nd argument to the link() function, much like he already has for elink().

So one could use something like

link(file.name, author)

in the table.

4 Likes