I am using Sphinx for documenting a python app and I used the sphinx_build_script -b html <path/to/source> <path/to/build> command to build the index.html file. When modifying docstrings and using the same command again, it seams the html content is not updating properly.
I've tried deleting every index files from the _modules, _sources and build directories without any luck.
This is the generated html file:
Classe de generation de rapport PDF :param orientation: Orientation en portrait ou paysage. :param unit: par defaut en mm. :param format: Format du document pdf (A4, A6, Letter).
and that is the source code:
"""Classe de generation de rapport PDF :param orientation: Orientation en portrait ou paysage. :type orientation: char. :param unit: par defaut en mm. :param format: Format du document pdf (A4, A6, Letter). THIS IS AN UPDATE """
After running the build command multiple times in a row, it seams the html file will update 1/5 times.