You'll need to follow same steps as compiling to HTML but you'll have to change some few steps
First of all .. open conf.py using a text editor (like notepad++) and delete this part (MOST IMPORTANT)
on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
import sphinx_rtd_theme
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
if on_rtd:
using_rtd_theme = True
follow the same steps to compile godot documentation explained in github page but use this code to compile:
sphinx-build -b htmlhelp ./ build
instead of this code:
sphinx-build -b html ./ build
(Notice that you may receive many warnings during compilation but these are something to be ignored)
Finally .. download Html Help Workshop from Microsoft page, open the hhp file and build it (as easy as I don't need to explain how to do it )
If things went well, Here's how the final file should appear: "v3.1 on Zippyshare"
Thanks in advance for taking your time :)