Created
June 30, 2021 11:50
-
-
Save LightAndLight/f8f33dc5fa8a185420d7e21d4452a46d to your computer and use it in GitHub Desktop.
Revisions
-
LightAndLight created this gist
Jun 30, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ Suppose I have two zettels, A and B: ``` A.md B.md ``` Then I link from B to A with something like, "[[A]] provides a good summary of topic blah". I now have a graph like this: ``` A.md <--- B.md ``` In the 'Impulse', this relationship would be rendered as: * B * A My issue is that this shows a hierarchy that I didn't intend. A isn't a child of B, and B isn't a child of A - I linked from B to A with the intention of creating a non-hierarchical relationship. If I wanted a hierarchy, I'd prepend or append # to the link. I'd prefer to see this as a result of my plain [[..]] link: * B * A *link icon* Thoughts?