Zensical Static Site Generator

0.0.33 · active · verified Wed Apr 15

Zensical is a modern static site generator built by the creators of Material for MkDocs. It focuses on performance, extensibility, and a smooth developer experience, leveraging a Rust core. The current version is 0.0.33, with frequent releases addressing bugs and introducing new features.

Warnings

Install

Quickstart

Start a new Zensical project and serve it locally for development. This demonstrates the typical CLI-first interaction with the library.

# Zensical is primarily a command-line interface (CLI) tool.
# First, initialize a new Zensical project in the current directory:
zensical new .

# This will create a `zensical.toml` configuration file and a `docs/`
# directory with example content.

# Then, serve the site locally and watch for changes:
zensical serve

# The site will typically be available at http://127.0.0.1:8000

view raw JSON →