Quartz sync: Sep 22, 2023, 12:59 PM

This commit is contained in:
bfahrenfort 2023-09-22 12:59:00 -05:00
parent 64316b2b5b
commit d9fbd5bb98
4 changed files with 16 additions and 3 deletions

View File

@ -12,4 +12,4 @@ Repo is [here](https://github.com/vrtmrz/obsidian-livesync) for those interested
Once I had the database the guide specified up and running (simple because docker), I routed it through nginx and tried to set up the editor plugin. However, the docs fail to mention that **you have to create an empty table inside CouchDB** and point the plugin to that, so I was causing all sorts of issues and getting errors I didn't know how to fix until I tried that on a whim. Now it works perfectly and will handle my documents without issue!
I also recommend setting up a keyboard shortcut for the `Replicate Now` command in Obsidian, I use `ctrl+shift+S`.
I also recommend setting up a keyboard shortcut for the `Replicate Now` command in Obsidian. I use `ctrl+shift+S`.

View File

@ -15,7 +15,8 @@ This site changes often. Check [[Updates]] for a monthly list of changes.
I [[about-me|(me, myself)]] write about:
- Projects I've undertaken and programs that I've used
- The intersection of social issues and technology, often with a privacy-first spin
- Anything else that you can find in the [Explorer](https://quartz.jzhao.xyz/features/explorer) on this page
- Anything else that you can find in the [Explorer](https://quartz.jzhao.xyz/features/explorer) on your left
- If you're on mobile, visit the [[Sitemap]].
# What the hell is that spiderweb thing?
That's the [Graph View](https://help.obsidian.md/Plugins/Graph+view). It's an [[Programs I Like/obsidian|Obsidian]] feature which acts as a map of what pages link to each other. Click on it for a map of the entire site and how it interconnects. It doesn't use Obsidian's implementation directly, but since the site generator I use is heavily inspired by Obsidian and [Obsidian Publish]( https://obsidian.md/publish ), it remains.

12
content/sitemap.md Normal file
View File

@ -0,0 +1,12 @@
---
title: Sitemap
tags:
- toc
date: 2023-09-22
---
Here are the homepages for each category on my site.
- [[Projects/home|Projects]]
- [[Programs I Like/home|Programs I Like]]
- [[Essays/home|Essays]]
- [[Misc/home|Miscellaneous Writings]]
- [[Updates]]

View File

@ -28,7 +28,7 @@ export const defaultContentPageLayout: PageLayout = {
right: [
Component.Graph(),
Component.DesktopOnly(Component.TableOfContents()),
Component.MobileOnly(Component.Explorer()),
//Component.MobileOnly(Component.Explorer()),
Component.Backlinks(),
],
}