🌱 a fast, batteries-included static-site generator that transforms Markdown content into fully functional websites
Go to file
2024-03-28 11:50:19 -05:00
.github remove all content 2024-03-14 13:45:43 -05:00
.vscode add extension settings 2024-03-25 17:41:37 -05:00
content formatting 2024-03-28 11:50:19 -05:00
docs Merge branch 'v4' of https://github.com/jackyzha0/quartz 2024-03-25 13:21:08 +00:00
quartz clean the layout a bit 2024-03-25 20:46:10 -05:00
.gitattributes rgb to hex colors 2023-09-21 17:49:02 -05:00
.gitignore update gitignore 2024-03-23 14:50:20 +00:00
.npmrc reorg layout 2024-03-14 14:28:49 -05:00
.prettierignore add lock file to ignore 2024-02-23 10:48:29 -06:00
.prettierrc pnpm run format 2024-03-14 12:28:44 -05:00
Dockerfile Create Dockerfile 2023-10-10 18:12:23 -05:00
globals.d.ts pnpm run format 2024-03-14 12:28:44 -05:00
index.d.ts pnpm run format 2024-03-14 12:28:44 -05:00
LICENSE minor changes/adjustments 2024-03-07 12:46:33 -06:00
package-lock.json Merge branch 'v4' of https://github.com/jackyzha0/quartz 2024-03-28 11:49:48 -05:00
package.json chore(deps): bump preact from 10.19.6 to 10.20.1 (#1035) 2024-03-26 04:47:15 -04:00
pnpm-lock.yaml Update dependencies 2024-03-25 13:25:45 +00:00
quartz.config.ts clean the layout a bit 2024-03-25 20:46:10 -05:00
quartz.layout.ts clean the layout a bit 2024-03-25 20:46:10 -05:00
README.md formatting 2024-03-28 11:50:19 -05:00
tsconfig.json pnpm run format 2024-03-14 12:28:44 -05:00

🌱 Forgetful Notes

code size repository size commits last commit is website up?

Forgetful Notes is my digital garden of knowledge. It serves as a platform for my learning and creative endeavours. A space for thinking through, building upon, and coming back to.

Github Pages Vercel

📑 Table of Contents

Quick start

1. Clone repo

git clone https://github.com/semanticdata/forgetful-notes.git

2. Install dependencies

pnpm install

3. Run the project locally

pnpm start

Features

  • Fast Natural-Language Search
  • Bidirectional Backlinks
  • Floating Link Previews
  • Admonition-style Callouts
  • Markdown Links and Wikilinks Support
  • Latex Support

📄 Background

Forgetful Notes is created using Quartz, hosted on GitHub, deployed with GitHub Pages, and facilitated by the GitHub Publisher plugin for Obsidian.

The website 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 was a game changer. I have ran my notes through Jekyll, Hugo, MkDocs, Zola, and most recently 11ty.

👨🏼‍💻 Useful Commands

Install dependencies

npm install

Update dependencies

npm update

Start local server

npm start

Update Quartz

npm run update

Sync the repo

npm run sync

Build only

npm run build

Read about a command

npx quartz <command> --help

🎨 Customization

Stylesheets

You can add custom CSS code within /quartz/styles/custom.scss. You will then need to uncomment line 4 of /quartz/styles/base.scss to have it take effect.

Fonts

Used in: Font Family Previous Font
Headers Bitter Schibsted Grotesk
Body Bitter Source Sans Pro
Code Fira Mono IBM Plex Mono

📁 Folder Structure

Show/Hide
.
├── .github/
│   └── workflows/
│       ├── build.yml
│       └── deploy.yml
├── content/
│   ├── notes.md
│   ├── pages.md
│   └── ...
├── docs/
│   ├── documentation.md
│   └── ...
├── quartz/
│   ├── cli/
│   │   ├── args.js
│   │   ├── constants.js
│   │   ├── handlers.js
│   │   └── helpers.js
│   ├── components/
│   │   ├── pages/
│   │   ├── scripts/
│   │   ├── styles/
│   │   ├── Backlinks.tsx
│   │   ├── Explorer.tsx
│   │   └── ...
│   ├── plugins/
│   │   ├── emitters/
│   │   ├── filters/
│   │   ├── transformers/
│   │   ├── index.ts
│   │   ├── types.ts
│   │   └── vfile.ts
│   ├── processors/
│   │   ├── emit.ts
│   │   ├── filter.ts
│   │   └── parse.ts
│   ├── static/
│   │   ├── favicon.ico
│   │   ├── site.manifest
│   │   └── ...
│   ├── styles/
│   │   ├── base.scss
│   │   ├── callouts.scss
│   │   ├── custom.scss
│   │   ├── syntax.scss
│   │   └── variables.scss
│   ├── util/
│   │   ├── theme.ts
│   │   ├── jsx.tsx
│   │   └── ...
│   ├── bootstrp.cli.mjs
│   ├── bootstrap-worker.njs
│   ├── build.ts
│   ├── cfg.ts
│   └── worker.ts
├── .gitattributes
├── .gitignore
├── .npmrc
├── .prettierignore
├── .prettierrc
├── Dockerfile
├── LICENSE
├── README.md
├── globals.d.ts
├── index.d.ts
├── package-lock.json
├── package.json
├── quartz.config.ts
├── quartz.layout.ts
├── screenshot.png
└── tsconfig.json

🛠️ Technology

The site uses various technologies cobbled together. It's powered by Quartz and Obsidian. You can read the Documentation, and join the Discord Community.

Here's some of them:

  • Quartz: a fast, batteries-included static-site generator.
  • Prettier: an opinionated code formatter.
  • Sass: makes CSS fun!
  • TypeScript: superset of JavaScript that compiles to clean JavaScript output.

All content for the site is written in Markdown within Obsidian—an extensible, flexible note-taking app. To export the notes from Obsidian, I rely on the GitHub Publisher plugin.

© License

Source code in this repository is available under the MIT License.