You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
@buhtz put the type after the colon and it will work. arg1 : (int) description
I seems another option could be arg1 : (int) : description but I have not tested it.
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.The text was updated successfully, but these errors were encountered: