https://github.com/lostmygithubaccount/zorto
A fast static site generator with executable code blocks inspired by Zola & Quarto.
https://github.com/lostmygithubaccount/zorto
Last synced: 4 months ago
JSON representation
A fast static site generator with executable code blocks inspired by Zola & Quarto.
- Host: GitHub
- URL: https://github.com/lostmygithubaccount/zorto
- Owner: lostmygithubaccount
- License: mit
- Created: 2026-02-08T01:37:37.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-02-09T00:25:12.000Z (5 months ago)
- Last Synced: 2026-02-09T00:26:32.287Z (5 months ago)
- Language: Rust
- Homepage: https://zorto.dev
- Size: 104 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Zorto
> **Under construction.** Zorto is in early development, check back soon.
A fast static site generator with executable code blocks inspired by [Zola](https://github.com/getzola/zola) and [Quarto](https://github.com/quarto-dev/quarto-cli).
## Install
Recommended:
```bash
curl -LsSf https://dkdc.sh/zorto/install.sh | sh
```
uv:
```bash
uv tool install zorto
```
cargo:
```bash
cargo install zorto
```
You can use `uvx` to run it without installing:
```bash
uvx zorto
```
## Usage
```
zorto [OPTIONS]
```
### Commands
| Command | Description |
|---------|-------------|
| `build` | Build the site |
| `preview` | Start preview server with live reload |
| `init` | Initialize a new site |
| `check` | Check site for errors without building |
| `clean` | Remove output directory |
### Quick start
```bash
# Create a new site
zorto init my-site
cd my-site
# Start dev server
zorto preview --open
# Build for production
zorto build
```
### `build`
```bash
zorto build [--output ] [--drafts] [--base-url ]
```
### `preview`
```bash
zorto preview [--port ] [--drafts] [--open]
```
## Features
- TOML frontmatter (`+++` delimited)
- Syntax-highlighted code blocks
- Executable code blocks (`` ```{python} ``)
- Shortcodes (inline and block)
- File includes (`{{ include(path="...") }}`)
- SASS/SCSS compilation
- Live reload preview server
- Taxonomy and pagination support
- Sitemap and Atom feed generation
- Internal link validation