First, search the help docs and this forum. Maybe your question has been answered! The debugging steps can help, too. Still stuck? Delete this line and proceed.
What I’m trying to do
I’m searching for the proper way to format “Topics” in the property section of Obsidian with multiple topics.
Is it: Topics: [work, economy, job outlook, out sourcing]
Does each topic need quotes around it, or brackets around it, or?
Things I have tried
I have searched Obsidian documentation and also searched online even using AI and receive different responses.
If you want a simple list type of key, this should indeed be usable as it is :
---
Topics: [work, economy, job outlook, out sourcing]
---
Now, if you use Properties in Live Preview/Reading and interact in any way with Properties, Obsidian will automatically reformat the array as a bulleted list:
---
Topics:
- work
- economy
- job outlook
- out sourcing
---
When it comes to the use of quotes though, I think they’re used in list type of keys for things like numbers …
---
numbers:
- "1"
- "2"
- "2.5"
- "3"
---
… internal links:
---
links:
- "[[Start here]]"
- "[[Vault is just a local folder]]"
---
… and also possibly when a value contain or start with maybe (I’m not entirely sure ) one or another character that should be escaped (but I don’t know which ones exactly )