Zorto
The AI-native static site generator (SSG) with executable code blocks, inspired by Zola and Quarto.
Install
Recommended:
|
Pre-built binaries are available for Linux and macOS via Python (uv). Windows users should install via cargo or use macOS/Linux.
uv:
cargo:
Verify installation:
zorto --version
You can use uvx to run it without installing:
Usage
zorto --help
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.