# 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 aditionnal dependencies python -m pip install -U -r requirements/documentation.txt # build it using live renderering sphinx-autobuild -b html docs/ docs/_build ``` Open in a web browser to see the HTML render updated when a file is saved.