From 680943e70f3c9ea77b69be38311880a5a1f6c804 Mon Sep 17 00:00:00 2001 From: Maxime Vaillancourt Date: Wed, 13 Apr 2022 18:55:06 -0400 Subject: [PATCH] Showcase notes stored in subdirectories --- _notes/{ => animals}/cats.md | 0 _notes/animals/tigers.md | 5 +++++ _notes/your-first-note.md | 2 ++ 3 files changed, 7 insertions(+) rename _notes/{ => animals}/cats.md (100%) create mode 100644 _notes/animals/tigers.md diff --git a/_notes/cats.md b/_notes/animals/cats.md similarity index 100% rename from _notes/cats.md rename to _notes/animals/cats.md diff --git a/_notes/animals/tigers.md b/_notes/animals/tigers.md new file mode 100644 index 0000000..33bc6fd --- /dev/null +++ b/_notes/animals/tigers.md @@ -0,0 +1,5 @@ +--- +title: Tigers +--- + +This is yet another note, this one about tigers. diff --git a/_notes/your-first-note.md b/_notes/your-first-note.md index 06d8b43..e7ca5cb 100644 --- a/_notes/your-first-note.md +++ b/_notes/your-first-note.md @@ -15,6 +15,8 @@ To link to another note, you can use multiple syntaxes. The following four use t - Using the note's title, with a label: [[A note about cats|link to the note about cats using the note title]] - Using the note's filename, with a label: [[cats|link to the note about cats using the note's filename]] +You can organize notes in subdirectories and link them normally. For example, the links above all point to the `_notes/animals/cats.md` file. Here's another example: [[tigers]]. + Non-latin languages are supported too: [[안녕하세요]]. Dashes and underscores in file names are supported, and may be omitted in the bracket link syntax. As an example, the `your-first-note.md` file can be linked to with [[your first note]] or [[your-first-note]], or even [[yOuR-FiRsT Note]].