Contents

Installation

The generator requires Python 3.11 or newer and no third-party Python packages.

Build the documentation#

Run the build from the repository root:

python3 build.py

The command validates the source and writes the static site to dist/.

Preview locally#

Start Python's static file server after building:

python3 -m http.server --directory dist 8000

Open http://localhost:8000/manual/ in a browser.

The generated files are disposable. Always make content changes in manual/, then build again.