# Documentation Project uses Sphinx to generate documentation from docstrings (documentation in-code) and custom pages written in Markdown (through the [MyST parser](https://myst-parser.readthedocs.io/en/latest/)). ## Build documentation website To build it: ```bash # install additional dependencies python -m pip install -U -r requirements/documentation.txt # build it sphinx-build -b html docs docs/_build/html ``` Open `docs/_build/index.html` in a web browser. ## Write documentation using live render ```bash sphinx-autobuild -q -b html docs/ docs/_build ``` Open in a web browser to see the HTML render updated when a file is saved.