Install documentation dependencies:
pip install -r requirements.txtGenerate HTML documentation:
sphinx-build -b html docs/ build/htmlThe generated site is in build/html/.
Some files are in Markdown. If needed, convert them to reStructuredText:
pandoc --from=markdown --to=rst --output=README.rst README.mdSee docs.md for usage-oriented docs.
To regenerate API template files:
sphinx-apidoc -o docs multilingualcl/This generates files such as:
Creating file docs/multilingualcl.rst.
Creating file docs/modules.rst.
To bootstrap a brand-new Sphinx config:
sphinx-quickstartThen generate HTML:
sphinx-build -b html docs/ build/htmlFor theme or extension changes, edit conf.py.
For content changes, edit the files in docs/ (.rst and .md).