From ca84da5b31fa00ca6c729a9b500efeb28f90b41b Mon Sep 17 00:00:00 2001
From: Nikola Georgiev <42315052+nikolageorgiev2000@users.noreply.github.com>
Date: Mon, 12 Sep 2022 00:05:14 +0000
Subject: [PATCH] feat: Hide full path to file in Wikilinks by default (#195)

---
 content/notes/editing.md |   49 +++++++++++++++++++++++++++++--------------------
 1 files changed, 29 insertions(+), 20 deletions(-)

diff --git a/content/notes/editing.md b/content/notes/editing.md
index db26229..4aaf585 100644
--- a/content/notes/editing.md
+++ b/content/notes/editing.md
@@ -1,28 +1,19 @@
 ---
 title: "Editing Content in Quartz"
+tags:
+- setup
+weight: -4
 ---
 
 ## Editing 
 Quartz runs on top of [Hugo](https://gohugo.io/) so all notes are written in [Markdown](https://www.markdownguide.org/getting-started/).
 
-### Obsidian
-I *strongly* recommend using [Obsidian](http://obsidian.md/) as a way to edit and grow your digital garden. It comes with a really nice editor and graphical interface to preview all of my local files.
-
-**🔗 [How to link your Obsidian Vault](notes/obsidian.md)**
-
-Of course, all the files are in Markdown so you could just use your favourite text editor of choice.
-
-### Ignoring Files
-Only want to publish a subset of all of your notes? Don't worry, Quartz makes this a simple two-step process.
-
-❌ [Excluding pages from being published](notes/ignore%20notes.md)
-
 ### Folder Structure
 Here's a rough overview of what's what.
 
 **All content in your garden can found in the `/content` folder.** To make edits, you can open any of the files and make changes directly and save it. You can organize content into any folder you'd like.
 
-**To edit the main home page, open `/content/_index.md`.** This is the home page which is slightly special. You don't need front matter here!
+**To edit the main home page, open `/content/_index.md`.**
 
 To create a link between notes in your garden, just create a normal link using Markdown pointing to the document in question. Please note that **all links should be relative to the root `/content` path**. 
 
@@ -31,27 +22,45 @@
 [A link to the config page](notes/config.md)
 ```
 
-### Front Matter
-Hugo is picky when it comes to metadata for files. Make sure that your title is double-quoted and that you have a title defined at the top of your file like so:
+Similarly, you can put local images anywhere in the `/content` folder.
 
 ```markdown
+Example image (source is in content/notes/images/example.png)
+![Example Image](/content/notes/images/example.png)
+```
+
+You can also use wikilinks if that is what you are more comfortable with!
+
+### Front Matter
+Hugo is picky when it comes to metadata for files. Make sure that your title is double-quoted and that you have a title defined at the top of your file like so. You can also add tags here as well.
+
+```yaml
 ---
 title: "Example Title"
+tags:
+- example-tag
 ---
 
 Rest of your content here...
 ```
 
-## Previewing Changes
-This step is purely optional and mostly for those who want to see the published version of their digital garden locally before opening it up to the internet. This is *highly recommended*.
+### Obsidian
+I recommend using [Obsidian](http://obsidian.md/) as a way to edit and grow your digital garden. It comes with a really nice editor and graphical interface to preview all of your local files.
 
-👀 [Preview Quartz Changes](notes/preview%20changes.md)
+This step is **highly recommended**.
+
+> 🔗 Step 3: [How to setup your Obsidian Vault to work with Quartz](notes/obsidian.md)
+
+## Previewing Changes
+This step is purely optional and mostly for those who want to see the published version of their digital garden locally before opening it up to the internet. This is *highly recommended* but not required.
+
+> 👀 Step 4: [Preview Quartz Changes](notes/preview%20changes.md)
 
 For those who like to live life more on the edge, viewing the garden through Obsidian gets you pretty close to the real thing.
 
 ## Publishing Changes
 Now that you know the basics of managing your digital garden using Quartz, you can publish it to the internet!
 
-🌍 [Hosting Quartz online!](notes/hosting.md)
+> 🌍 Step 5: [Hosting Quartz online!](notes/hosting.md)
 
-Having problems? Checkout our [FAQ and Troubleshooting guide](notes/troubleshooting.md).
\ No newline at end of file
+Having problems? Checkout our [FAQ and Troubleshooting guide](notes/troubleshooting.md).

--
Gitblit v1.10.0