Zorto
The AI-native static site generator (SSG) with executable code blocks, inspired by Zola and Quarto.
Warning: While I use Zorto for many static websites including zorto.dev, I do not consider it production-ready for usage by others yet.
Install
Recommended:
|
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.