Can you have multiple entries in a frontmatter key?

Sorry if I missed a topic covering the same thing.

I’m using silverbullet for my D&D notes, and I’d like to for example have a frontmatter key called relations, and use a list of names to link to, like with the “tags” key.

My current solution is to use a tag called relation:xxxx, but I’d like to have them separated out for better readability, and to add more categories of tags like factions

Has anyone got something like this working?

Frontmatter is just YAML, and YAML you can create lists:

---
relations:
- "item 1"
- "item 2"
---

for instance

1 Like

Fantastic! Thank you.