Replies: 2 comments 4 replies
-
|
Did you ever figure out if this was possible? I'm thinking about trying to use the same type of structure. |
Beta Was this translation helpful? Give feedback.
-
|
Short answer: Breadcrumbs reads links from flat frontmatter properties, and nested objects like The reason is Obsidian itself moved away from nested frontmatter. Since the Properties UI landed, only flat scalars and lists are first-class: nested objects can't be edited in the UI, and Obsidian's link resolution ( The good news is flat typed-link fields already express exactly what nested pairs would — one property per relation type: ---
parent: "[[Some Note]]"
friend: "[[Another Note]]"
---Each becomes a typed edge, fully editable in the Properties UI and resolved natively. So there's no capability lost by staying flat. Closing as resolved — thanks! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
hi, is there a way to utilise nested YAML too?
i have extensive use of nested yaml like:
relations:
relation-link: "[[Arne]]"
relation-link: "[[Daniela]]"
relation-link: Valentin
relation-link: Johanna
or
jobs:
job-company: "[[Campany 1]]"
active: true
job-company: "[[Comapny 2]]"
active: false
is there a way to translate this into breadcrumbs?
Beta Was this translation helpful? Give feedback.
All reactions