I'm learning how to use Sphinx to create a documentation for my code. After I saw some examples like this:
def complex(real=0.0, imag=0.0):
"""Form a complex number.
Keyword arguments:
real -- the real part (default 0.0)
imag -- the imaginary part (default 0.0)
"""
if imag == 0.0 and real == 0.0: return complex_zero
...
What is the language used in comments to make Sphinx understand and catch them? Without this syntax and logic, Sphinx doesn't see the comments in my code and when I generate the HTML, the module is empty.
Here an example:
You have to distinguish comments from docstrings (called "documentation strings" in full).
See PEP8 and notice docstrings apply only to modules, functions, classes, and methods. To the mentioned objects you can apply your_object.__doc__
to retrieve the docstring programmatically; Variables don't have docstrings.
Regarding your example:
def complex(real=0.0, imag=0.0):
"""Form a complex number.
Keyword arguments:
real -- the real part (default 0.0)
imag -- the imaginary part (default 0.0)
"""
There are 3 prevalent syntaxes that can be used in docstring that Sphinx will retrieve:
The norm is to choose between Numpy or Google style (currently they provide better readability and functionality, together with a style guide). For these to work you'll need to use the Sphinx-Napoleon extension, take a look at the overview in the official documentation.