This repository publishes Obsidian notes as a static website using Quartz.
sources/- Your Obsidian notes (this is your vault content)quartz.config.ts- Quartz configurationquartz.layout.ts- Layout configurationpublic/- Generated static site (git-ignored)
-
Install dependencies:
npm install
-
Build the site:
npx quartz build --directory sources
-
Serve locally with live reload:
npx quartz build --serve --directory sources
The site automatically deploys to GitHub Pages when you push to the main branch. The GitHub Action workflow builds and deploys your notes.
Your site will be available at: https://samouraiworld.github.io/gov-research-wiki/
Simply add or edit Markdown files in the sources/ directory. The Quartz build process will automatically:
- Parse Obsidian-flavored Markdown
- Convert wikilinks (
[[note]]) to proper links - Generate a searchable site with navigation
- Apply syntax highlighting and LaTeX rendering
Edit quartz.config.ts to customize:
- Site title and metadata
- Theme colors and fonts
- Plugins and features
- Analytics and SEO settings