Zorto
The AI-native static site generator (SSG) with executable code blocks, inspired by Zola and Quarto.
Install
|
Verify:
zorto --version
The curl | sh installer above wraps uv tool install zorto. On Linux and macOS it pulls a pre-built wheel from PyPI that bundles the Rust engine (no compile step). Windows is not covered by the installer — use cargo from source or run under WSL.
uv (PyPI wheel, no compile):
uvx (run once without installing):
cargo (build from source, requires Rust 1.85+):
Usage
zorto --help
Slide decks
Zorto ships a reveal.js-powered presentation mode: one markdown file per slide, with frontmatter for layout, background, and transitions. Arrow keys, speaker view, fullscreen, and overview mode are built in, so a deck is just a directory of .md files that a human or agent can draft, reorder, or hand off without touching HTML.
- Live intro deck — what a Zorto-built deck looks like.
- Create a presentation — step-by-step guide.
- Presentations concept — the content model behind decks.
Executable code blocks
Use {bash} or {python} in code blocks to execute them.
echo "hello"
echo "Built on $(uname -s) $(uname -m) at $(date -u '+%Y-%m-%d %H:%M UTC')"
for i in range(5):
print(i)
[!TIP] If you're reading elsewhere, see https://zorto.dev for the rendered results of the code blocks above.