a0cef3d9c8
It's possible to end up with "recursive embeds" when two notes embed each other. This happens for example when a `Note A.md` contains `![[Note B]]` but `Note B.md` also contains `![[Note A]]`. By default, this will trigger an error and display the chain of notes which caused the recursion. Using the new `--no-recursive-embeds`, if a note is encountered for a second time while processing the original note, rather than embedding it again a link to the note is inserted instead to break the cycle. See also: https://github.com/zoni/obsidian-export/issues/1
10 lines
135 B
Markdown
10 lines
135 B
Markdown
This note (A) embeds note B:
|
|
|
|
This note (B) embeds note C:
|
|
|
|
This note (C) embeds note A:
|
|
|
|
→ [Note A](Note%20A.md)
|
|
|
|
Note C ends here.
|