问题
Converting a project doc from epydoc
to sphinx
, I am mostly thrilled, but miss one property of epydoc
, as it generated a list of methods in the top of the document, followed by the detailed section with fully rendered doc-strings below. With autodoc
, I naturally get the latter simply by
.. automodule:: mymodule
:members:
I'm not yet on the level of tweaking themes, but wounder if there was a straight forward way to achieve this. To make it more clear, I aim for something like this (even without the short descriptions, just the signatures in the first part):
Edit: Just now, I also found this older post. The accepted answer is probably close to what I am looking for.
来源:https://stackoverflow.com/questions/60670307/is-it-possible-to-generate-list-of-members-linking-to-detailed-descriptions-bel