Open
Description
Problem Description
As noted in #143 , many Python projects use the format :param <param-name>: <description>
or @param <param-name>: <description>
, but this format for documenting function parameters is not recognized by pdoc.
Proposal
I would love to see pdoc add support for these formats for documenting function parameters. I work with several projects that use this format. Additionally, I feel like this format looks better in the code (particularly inside of IDE help texts).
Alternatives
Converting these docstrings to the google or numpydoc formats described in #153 is burdensome for larger projects that want to switch to using pdoc, especially since pdoc otherwise works so beautifully out of the box.
Additional context
n/a