Hello,
referencing your example code in the README.md I ask myself if there is a way to specify the type of an argument. E.g. something like this
def myfunction(arg1, arg2, kwarg='whatever.'):
"""
Does nothing more than demonstrate syntax.
This is an example of how a Pythonic human-readable docstring can
get parsed by doxypypy and marked up with Doxygen commands as a
regular input filter to Doxygen.
Args:
arg1(int): A positional argument.
arg2(string): Another positional argument.
But it does not work. The (int) and (string) does not appear in the HTML output.
Hello,
referencing your example code in the README.md I ask myself if there is a way to specify the type of an argument. E.g. something like this
But it does not work. The
(int)and(string)does not appear in the HTML output.