Skip to content

Freeze Crumbs to File

This command takes all the implied edges leaving the current note, and makes them explicit by writing them to the file in the format you choose.

For example, if the current note has some implied edges pointing to other notes:

graph
	1(Note) -.->|up| 2(B)
	1 -.->|down| 3(C)

You can run the Freeze implied edges to note command to turn them into explicit typed-links:

Note.md:

---
up: "[[B]]"
down: "[[C]]"
---
... content of Note.md
graph
	1(Note) -->|up| 2(B)
	1 -->|down| 3(C)