Hi all,
Is there a way to gather methods into groups when creating autosummary tables, using a metadata tag or something similar?
I'm working on a project with many classes each with a large number of methods. Autosummary has been super helpful to create a summary listing of the methods, but the list is really long so I need a way to separate out the most useful methods from the rest.
I'm wondering if it's possible to break out the Methods section into two parts, "Most useful" and "Others"?
Perhaps this could be controlled by adding a custom metadata tag like :meta important: in the method docstrings, and having two different autosummary tables that somehow only include methods with the relevant tag?
Any tips greatly appreciated!
C