Extending the documentation¶
Using reStructuredText¶
Useful resources:
Building a local copy of the docs¶
Create a Python virtual environment at
.venv
:$ python3 -m venv .venv
Activate the virtual environment:
$ source .venv/bin/activate
Install the documentation pre-requisites:
$ pip install -r docs/requirements.txt
Build the documentation:
$ make -C docs html
Open the documentation in your favorite browser:
$ <BROWSER> docs/_build/html/index.html