Skip to content

Instantly share code, notes, and snippets.

@LightAndLight
Created June 30, 2021 11:50
Show Gist options
  • Select an option

  • Save LightAndLight/f8f33dc5fa8a185420d7e21d4452a46d to your computer and use it in GitHub Desktop.

Select an option

Save LightAndLight/f8f33dc5fa8a185420d7e21d4452a46d to your computer and use it in GitHub Desktop.

Revisions

  1. LightAndLight created this gist Jun 30, 2021.
    27 changes: 27 additions & 0 deletions neuron.md
    Original 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?