aphid 0.3.0
Rich wiki categories with descriptions and icons, a card-based wiki index, and an optional wiki intro page — the wiki gets a proper landing experience.
aphid is a fast, opinionated static site generator with first-class support for blogs, wikis, and documentation — all from Markdown.
cargo install aphid --locked
aphid is written in Rust which is blazingly fast and allows fearless concurrency. As a result rendering your site is multithreaded to utilize all cores of your CPU and be really quick.
The Dev server rebuilds run on the rayon threadpool while tokio keeps serving HTTP and WebSocket traffic. File-change reloads land before you’ve switched windows.
Keep content and configuration in one clean directory. aphid watches for changes and rebuilds only what’s needed. The same Markdown drives the blog, the wiki, and standalone pages — and [[wiki-links]] resolve across all three.
my-site/
├── aphid.toml
├── content/
│ ├── home.md
│ ├── blog/
│ │ └── first-post.md
│ ├── wiki/
│ │ └── installation.md
│ └── pages/
│ └── about.md
└── static/
└── images/
Themes are plain Tera templates plus static assets — swap the entire look with a single theme line in aphid.toml, or fork the default and tweak. Loops, conditionals, and inheritance give you full control over the rendered HTML.
Rich wiki categories with descriptions and icons, a card-based wiki index, and an optional wiki intro page — the wiki gets a proper landing experience.
AI-agent skill scaffolding via `aphid agent`, a popularity-sorted tag cloud on the home page, and a clearer tag page that splits blog posts and wiki pages into separate sections.
A content-polish release. Wiki-links now accept `[[page#section]]` anchors, headings take `{#custom-id}` overrides, author config gains a dedicated `link` field, every page ships OpenGraph + Twitter card meta tags, and blog posts expose a reading-time estimate.