I'm using doxygen
in combination with doxypypy
to document Python source code.
class Test:
"""
This is a test class.
The thest class only serves the purpose of a MWE.
Attributes:
memberA (int): This is member A.
memberB (int): This is member B.
memberC (int): This is member C. A and B never invite C to their party.
"""
def __init__(self):
self.memberA = []
self.memberB = []
self.memberC = []
I now want to group members A
and B
in a member group (by using @{
and @}
etc.) but several attempts of implementing this in the docstring were futile. What is the correct syntax of achieving this? (I'm quite new to Python in general, I'm coming from the C++ side... I'm using Google commenting style)
EDIT: Also, I failed to find out so far what formats I can use now. I know I can use doxygen special commands, but does doxypypy
know how to read e.g. Google Style Doc?
EDIT2: I also discovered, that doxygen
/doxypypy
ignore the type hints... does anyone know how to include them?
EDIT3: Member groups can be used by using
##@{
#items in group
##@}