Wiki Link

A wiki link references a note using its Note Name without embedding the note's contents.

Let's say you have a target note:

some.note-1.md

To reference it as a link from your current note, use the following syntax:

[[some.note-1]]

A simple Note Link like [[some-dst-note]] is an unnamed note link.

For a link to have a name, it needs to be prefixed with a [[rel.<X>]] note.

Upcoming feature is support for Named Link

#status.not-implemented: this is not implemented yet, but will be. You can start using the pattern of typed relationships to add consistency in defining relationship between notes, and later on these relationships will come to life in visualizations :).

To name a link, prefix it with a relationship note using the syntax [[rel.<name-of-relationship>]]:[[some-dst-note]]

---
title: note-A
---

### Relationshps
- [[rel.depends-on]]:**[[component-A]]**
- [[rel.dependency-of]]:[[component-B]]

Dissecting one of the two named relationships above

[[rel.depends-on]]:**[[component-A]]**
  • [[rel.depends-on]] is a note, but because it starts with the rel. hierarchy, it is treated as a special type of note: Relationship Note.
  • [[component-A]] is the destination of the note link.

With [[rel.depends-on]]:**[[component-A]]** we create a named relationship of:

graph LR noteA --depends-on--> component-A


Children
  1. Named Link
  2. Unnamed note link

Backlinks