Is it possible to create an index in Sphinx which is created by specific (or custom) elements in the docstring?
For example, I have the following function and would like to have Sphinx to create an index from the field "Command Reference".
Is this possible and what would I have to do?
def get_software_version(self):
"""
Gets the software version
Examples
--------
100000 = V1.00
Command Reference
-----------------
CSWVE
Returns
-------
version: string
version number as string
"""