Dataview: list notes titles as links, not filenames

it seems i’m not able to do this, and nobody already tried:
all my notes have a title: metafield (and a “weight” for ordering)
i need to create an index in the first file, listing all sibling files (usually 20 chapters) but not using the filename as links, but the title…

the best i coudl do is this, but the titles aren’t link… how can i make them links?

LIST WITHOUT ID
title
FROM "mybook"
WHERE file.name != this.file.name
SORT weight
1 Like

You could probably use the link() function to do what you’re trying to do

1 Like

yeah!
here is the solution:

LIST WITHOUT ID
link(file.name, title)
FROM "mybook"
WHERE file.name != this.file.name
SORT weight

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.