In my index file I'm explicitly writing directives like .. autofunction:: someFunction. Is there a way to have SphinxJS automatically iterate over my module and build the documentation instead of me writing a directive for each function? I've looked at the module directive but am confused by it. Is there any way to achieve this like we can with autoclass? Or do I have to convert my module into a class to get this functionality with auto-iterating over members?
I have a module like this:
In my index file I'm explicitly writing directives like
.. autofunction:: someFunction
. Is there a way to have SphinxJS automatically iterate over my module and build the documentation instead of me writing a directive for each function? I've looked at the module directive but am confused by it. Is there any way to achieve this like we can withautoclass
? Or do I have to convert my module into a class to get this functionality with auto-iterating over members?