Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign upOption to export only members in subclasses that differ from their parent's version #106
Comments
This comment has been minimized.
This comment has been minimized.
|
@JPLeBreton You might be able to do this by modifying the template. See here for example: https://github.com/BurntSushi/pdoc/blob/master/pdoc/templates/html.mako#L177-L181 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
JPLeBreton commentedMay 26, 2016
I have class A which has a lot of members, and class B which extends A and overrides/adds a single function or variable. I'd prefer the documentation for B to only show documentation for that one member, and not reproduce all the other members from A which are identical. In cases where class A has several trivial subclasses, documentation files contain massive amounts of completely redundant information. Is it possible to detect these cases?