Compile to HTML: Make HTML
Explore how to build and compile Python code documentation using Sphinx. Understand the automated process from .rst file generation to HTML output, including useful make commands for cleaning builds and checking links.
We'll cover the following...
We'll cover the following...
Building the documentation
Building the documentation is an automated process. The autodoc extension will first
construct .rst files. These are then converted into HTML pages. On Linux and Mac, this is accomplished using make, an oldie-but-goodie command-line ...