Codeblock Reference - Dataview#dvlistelements

dv.list(elements)

Render a dataview list of elements; accept both vanilla arrays and data arrays.

dv.list([1, 2, 3]) => list of 1, 2, 3
dv.list(dv.pages().file.name) => list of all file names
dv.list(dv.pages().file.link) => list of all file links
dv.list(dv.pages("#book").where(p => p.rating > 7)) => list of all books with rating greater than 7

Printed 2026-06-28.

(echo:: @ )