Replies: 1 comment
|
Yes — your guess is exactly right. Two ways to do it in one go: Inline (Dataview-style), all on one line: same:: [[Note1]], [[Note2]], [[Note3]]Breadcrumbs reads every wikilink on that line and creates a Frontmatter (YAML list): ---
same:
- "[[Note1]]"
- "[[Note2]]"
- "[[Note3]]"
---List-type properties are read natively, so each entry becomes its own Either form gives you the three sibling edges without repeating |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Case: 3 notes on the same level (siblings)
Instead of
same:: [[Note1]]
same:: [[Note2]]
same:: [[Note3]]
What is the syntax to define them "in one go" without having to type "same..." 3 times?
Can it be as simple as
same::[[Note1]], [[Note2]], [[Note3]]
Thanks
All reactions