Blog
blog/second-brain
Second Brain Architecture
How this static blog is built with Rust.
Second Brain Architecture
This note explains the pipeline:
- Parse frontmatter (
publish,home, tags). - Rewrite Obsidian wikilinks.
- Render markdown.
- Generate static HTML pages.
See also home and SEO and Performance Guide.
Linked Mentions
- SEO and Performance Guide2026-02-14
Key points: Canonical URL for each page. Open Graph and Twitter tags. JSON LD structured data. sitemap.xml, robots.txt, rss.xml. Lightweight CSS and static hosting. This page links back to s…
- GitHub to Cloudflare Pipeline2026-02-13
This note documents how markdown updates move to production. blog build compiles notes into static files under dist/. Source: content/posts Static assets: static Outputs: index.html, sitemap.xml…
- Obsidian Linking Habits2026-02-12
Connected writing stays maintainable when links are explicit. note for direct references label for readable anchor text note for deep links into long notes Examples: Start from home Deployme…
- Rust Rendering Notes2026-02-11
This stack uses Askama for page skeletons and Maud for assembled fragments. Askama: predictable layout and metadata templates Maud: ergonomic generation of backlink sections and composed HTML bloc…