Doc#

auto generate from code

sphinx-apidoc -f -o docs/ ac_core/

This will force overwriting the files list below

docs/ac_core.rst.
docs/ac_core.interfaces.rst.
docs/ac_core.modal.rst.
docs/ac_core.utils.rst.
docs/modules.rst.

Generate static html doc#

cd docs
make html

The output file is at ./docs/_build/html/

Live doc#

cd docs && make clean && cd .. && sphinx-apidoc -f -o docs/ ac_core/ && cd docs && make html && cd ..