mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-25 07:25:42 -05:00
* PUSH NOTE : Zola Portfolio.md * PUSH NOTE : Zola Minimal.md * PUSH NOTE : Obsidian Starter Vault.md * PUSH NOTE : Mabuya.md * PUSH NOTE : Forgetful Notes.md * PUSH NOTE : unlock-firefox-sidebar.md * PUSH NOTE : on-burning-out.md * PUSH NOTE : hello-world.md * PUSH NOTE : monkey-brain.md * PUSH NOTE : SSD NVMe Comparison.md * PUSH NOTE : Emmet Cheat Sheet.md * PUSH NOTE : Aurora Borealis Sighting.md * PUSH NOTE : Zola.md * PUSH NOTE : Meta.md * PUSH NOTE : Tools.md * PUSH NOTE : Inspirations.md * PUSH NOTE : index.md * PUSH NOTE : Digital Garden.md * PUSH NOTE : Words I Like.md * PUSH NOTE : About.md
54 lines
2.4 KiB
Markdown
54 lines
2.4 KiB
Markdown
---
|
|
title: Meta (how this site was made)
|
|
description: How the site was made.
|
|
compartir: true
|
|
updated: 2023-10-28
|
|
tags:
|
|
- meta
|
|
---
|
|
|
|
|
|
> [!summary]
|
|
>
|
|
> **Forgetful Notes** is created using [Quartz](https://github.com/jackyzha0/quartz), hosted on [GitHub](https://github.com/), deployed with [GitHub Pages](https://pages.github.com/), and facilitated by the GitHub [Publisher](https://github.com/ObsidianPublisher) plugin for [Obsidian](https://obsidian.md/). If interested, you can browse the [source](https://github.com/semanticdata/forgetful-notes) code.
|
|
|
|
### Background
|
|
|
|
Forgetful Notes has gone through many changes. I have not been shy about moving from technology to technology as I learn new things. Coming across the world of [[./Static Site Generators|Static Site Generators]] was a game changer. I have ran my notes through [Jekyll](https://jekyllrb.com/), [Hugo](https://gohugo.io/), [MkDocs](https://squidfunk.github.io/mkdocs-material/), and most recently [Zola](https://www.getzola.org/).
|
|
|
|
However, this site is not specifically built with any of the aforementioned. Instead I have opted to follow in the footsteps of [Jacky Zhao](https://github.com/jackyzha0) and created my [[./Digital Garden|Digital Garden]] using the new fully rewritten [Quartz](https://github.com/jackyzha0/quartz)—a set of tools that helps you publish your digital garden and notes as a website for free.
|
|
|
|
### Technology
|
|
|
|
All content for the site is written in [[./Markdown|Markdown]] within [Obsidian](https://obsidian.md/)—an extensible, flexible note-taking app. To export the notes from Obsidian, I rely on the [GitHub Publisher](https://github.com/ObsidianPublisher) plugin.
|
|
|
|
The [source code](https://github.com/semanticdata/forgetful-notes) is hosted in [GitHub](https://github.com/). From here we use [GitHub Actions](https://github.com/features/actions) to build and deploy the site to [GitHub Pages](https://pages.github.com/).
|
|
|
|
### Features
|
|
|
|
* Fast Natural-Language Search
|
|
* Bidirectional Backlinks
|
|
* Floating Link Previews
|
|
* Admonition-style Callouts
|
|
* Markdown Links and Wikilinks Support
|
|
* Latex Support
|
|
|
|
### File Structure
|
|
|
|
```
|
|
root/
|
|
├── .github/
|
|
│ └── workflows/
|
|
├── content/
|
|
| └── notes
|
|
├── docs/
|
|
| └── documentation
|
|
└── quartz/
|
|
| ├── components/
|
|
| ├── plugins/
|
|
| └── styles/
|
|
└── quartz.config.ts
|
|
└── quartz.layout.ts
|
|
└── package.json
|
|
```
|