Extending the Documentation

Extending the Documentation

Extending the Documentation

Using reStructedText

Building a local copy of the docs

# create a venv at .venv
python3 -m venv .venv

# activate the venv
. .venv/bin/activate

# install the docs prereqs
pip install -r docs/requirements.txt

# builds the docs
make -C docs html

# open docs/_build/html/index.html in your favorite browser