An Obsidian to website publishing system that allows me to publish directly out of my Digital Garden and so retain the benefits of a single, frictionless workflow. The GitHub source is at https://quartz.jzhao.xyz.
The Quantum Garden moved to Quartz in September 2023.
flowchart TD
A["/"] --> B(fa:fa-note-sticky notes)
A --> C(fa:fa-square-rss blog)
A --> E(fa:fa-tree maturity)
A --> F(fa:fa-mountain-sun landscapes)
A --> D(fa:fa-lock assets)
A --> G(fa:fa-lock management)
The modifications I’ve made from the original codebase are listed below with the file(s) where the change has been made. You’re more than welcome to view them in-situ at the site’s Github repository. The majority are to support Designing The Quantum Garden and others are purely informational/cosmetic.
I believe it’s poor design to link to any pages that I can know don’t exist.
\quartz\plugins\transformers\ofm.ts
At this stage of the garden’s development this hides the fact that many pages are not as inter-linked as they should be.
\quartz.layout.ts
For future proofing as mixed case URLs only cause problems when page names change.
\quartz\plugins\transformers\ofm.ts
\quartz\util\path.ts
There is also a custom rule applied to Cloudflare to convert all incoming URLs to lower case for any off-site references except if the file is /static/contentIndex.json
as that breaks Search.
The folder structure behind the site doesn’t add as much value as good writing and linking.
\quartz.layout.ts
Save me some work for any new social links in the footer. Solving for this change improved my Javascript knowledge.
\quartz\components\Footer.tsx
\quartz.layout.ts
Some small configuration options. Note that dates are no longer being shown as part of Designing The Quantum Garden.
\quartz\components\Date.tsx
Display Seedling, Budding or Evergreen status — Automated from a growth
property on each page in preference to using tags because the purpose of the information is different.
\quartz\components\ContentMeta.tsx
Include images for the new compressed web image format.
\quartz\plugins\transformers\ofm.ts
Display tags with a icon rather than a #
\quartz\components\PageLiist.tsx
\quartz\components\TagList.tsx
Tag pages can themselves be tagged and show the list of their tags.
\quartz\components\pages\TagContent.tsx
If you are on a tag page, the list of notes with that tag no longer display the name of the page itself. It’s completely redundant information.
\quartz\components\PageLiist.tsx
Add pages to index all notes within one or more Landscapes.
\quartz\quartz.config.ts
\quartz\components\index.ts
\quartz\components\ContentMeta.tsx
\quartz\components\pages\LandscapeContent.tsx
\quartz\plugins\emitters\index.ts
\quartz\plugins\emmiters\landscapePage.tsx
\quartz\plugins\transformers\frontmatter.ts
I prefer topics over tags. Possibly could have done this with a site redirect, but I like this way better. Fixes it at the root.
\quartz\components\Explorer.tsx
\quartz\components\PageList.tsx
\quartz\components\RecentNotes.tsx
\quartz\components\TagList.tsx
\quartz\components\pages\LandscapeContent.tsx
\quartz\components\pages\TagContent.tsx
\quartz\components\scripts\graph.inline.ts
\quartz\plugins\emitters\folderPage.tsx
\quartz\plugins\emitters\tagPage.tsx
\quartz\plugins\transformers\ofm.ts
\quartz\util\path.test.ts
The default is to say “Topic: abcd”. Now the FontAwesome Message icon is displayed instead, and throughout the site for all topic labels.
\quartz\components\Articles.tsx
\quartz\components\PageList.tsx
\quartz\components\TagList.tsx
\quartz\components\pages\LandscapeContent.tsx
\quartz\components\pages\TagContent.tsx
Add pages to index all notes with their maturity level of Seedling, Budding, or Evergreen.
\quartz\quartz.config.ts
\quartz\components\index.ts
\quartz\components\ContentMeta.tsx
\quartz\components\pages\GrowthContent.tsx
\quartz\plugins\emitters\index.ts
\quartz\plugins\emmiters\GrowthPage.tsx