ar.falsy.cat/content/notes/editing.md

77 lines
3.0 KiB
Markdown
Raw Normal View History

2021-07-18 19:19:58 +00:00
---
title: "Editing Content in Quartz"
---
## Editing
Quartz runs on top of [Hugo](https://gohugo.io/) so all notes are written in [Markdown](https://www.markdownguide.org/getting-started/).
2021-07-19 04:36:15 +00:00
### 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, I'm not going to stop you!
### Folder Structure
Here's a rough overview of what's what.
2021-07-18 19:19:58 +00:00
**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.
2021-07-19 04:36:15 +00:00
**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!
2021-07-18 20:40:53 +00:00
2021-07-19 04:36:15 +00:00
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**.
2021-07-18 19:19:58 +00:00
```markdown
For example, I want to link this current document to `config.md`.
[A link to the config page](config.md)
2021-07-18 20:40:53 +00:00
```
### Front Matter
Hugo is picky when it comes to metadata for files. Ensure that you have a title defined at the top of your file like so:
```markdown
---
title: "Example Title"
---
Rest of your content here...
2021-07-18 19:19:58 +00:00
```
## 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. For those who like to live life more on the edge, viewing the garden through Obsidian gets you pretty close to the real thing.
### Install `hugo-obsidian`
2021-07-19 04:36:15 +00:00
This step will generate the list of backlinks for Hugo to parse. Ensure you have [Go](https://golang.org/doc/install) (>= 1.16) installed.
2021-07-18 19:19:58 +00:00
```shell
# Install and link `hugo-obsidian` locally
2021-07-19 04:36:15 +00:00
$ go install github.com/jackyzha0/hugo-obsidian
2021-07-18 19:19:58 +00:00
# Navigate to your local Quartz folder
$ cd <location-of-your-local-quartz>
# Scrape all links in your Quartz folder and generate info for Quartz
$ hugo-obsidian -input=content -output=data
```
Afterwards, start the Hugo server as shown above and your local backlinks and interactive graph should be populated!
2021-07-19 04:36:15 +00:00
### Installing Hugo
Hugo is the static site generator that powers Quartz. If you'd like to preview your site locally, [install Hugo](https://gohugo.io/getting-started/installing/).
```
# Navigate to your local Quartz folder
$ cd <location-of-your-local-quartz>
# Start local server
$ hugo server
# View your site in a browser at http://localhost:1313/
```
2021-07-18 19:19:58 +00:00
## 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)
Having problems? Checkout our [FAQ and Troubleshooting guide](notes/troubleshooting.md).