Skip to content

Commit

Permalink
Refactor note structure by deleting outdated files and adding new con…
Browse files Browse the repository at this point in the history
…tent for fleeting, permanent, and collecting notes
  • Loading branch information
andrewshawcare committed Feb 20, 2025
1 parent 9a6a4a6 commit e3f8d01
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Collecting notes
layout: note
---

1. When an interesting thought is had, write a [fleeting note](./1-fleeting-notes.md).
2. If the thought is related to something, record it in a [reference note](./4-reference-notes.md).
3. Use fleeting notes and reference notes to write [permanent notes](./2-permanent-notes.md).
4. Each permanent note should be [identified](./6-identifying-notes.md) and [catalogued](./5-cataloguing-notes.md) in the note box.
1. When an interesting thought is had, write a [fleeting note](./fleeting-notes.md).
2. If the thought is related to something, record it in a [reference note](./reference-notes.md).
3. Use fleeting notes and reference notes to write [permanent notes](./permanent-notes.md).
4. Each permanent note should be [identified](./identifying-notes.md) and [catalogued](./cataloguing-notes.md) in the note box.
4 changes: 4 additions & 0 deletions content/zettelkasten/composing-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Composing notes
layout: note
---
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ layout: note

Fleeting notes record thoughts as they happen.

Later they are compiled into [permanent notes](./2-permanent-notes.md) and discarded.
Later they are compiled into [permanent notes](./permanent-notes.md) and discarded.

The etymology of _fleeting_:

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tags/table-of-contents/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const schema: Schema = {

case "articles":
const articleFilenames = FileSystem.readdirSync(sourceDirectory).filter(
(filename) => filename.match(/^\d+-.*.md$/),
(filename) => filename.match(/^.*.md$/),
);

orderedListTag.children = articleFilenames
Expand Down

0 comments on commit e3f8d01

Please sign in to comment.