What I’m Trying to Do
I use dataview to collect terms across notes and store them in one place index/glossary style using this code:
Dataview
TABLE WITHOUT ID Method, Process as "Quick definition", file.link as "Instance"
WHERE contains(tags, "Method") AND Method != null AND Process != null
SORT Term ASC
It works well except if there are multiple terms per note they become bulleted as you can see in the image. The terms also do not line up with the definition making it hard to read. How can I get the formatting consistent and get the terms to line up better? Also the asc sorting is only applied within a note (Cunliffe et al 2017 has D and M in order but we go back to D when starting Gutierrez etc)
Things I have tried
Straight up omitting the file.link column to see if that would separate the terms. I do not necessarily need that column at all and would be happy to omit it, but we still get weird bullet points and not-aligned term/definition.
I am almost a complete beginner with no code experience.


