Building Documentation¶
Arelle’s documentation is built using Sphinx and published to Read the Docs.
Build Locally¶
Install documentation dependencies.
pip install -r requirements-docs.txt
Navigate to the
docs
directory.cd docs
Build HTML documentation
Linux or macOS
# build make html # or auto rebuild on file changes (useful when working on documentation) make livehtml
Windows
# build .\make.bat html # or auto rebuild on file changes (useful when working on documentation) .\make.bat livehtml
Open documentation:
file
docs/_build/html/index.html
if usingmake html
http://127.0.0.1:8000/ if using
make livehtml