Replies: 1 comment
-
We were looking into something similar Were you able to find a solution to this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When I create the markdown file with this command:
pydoc-markdown -I my-fancy-lib -m example > docs/example.md
, i get a resulting example.md with the classes _Foo, Abc and Def.How can I exclude classes of functions with a leading underscore?
How can I select the classes or functions which should be included? For example when I only want class Abc in the resulting example.md.
-m example --include=Abc
or-m example --exclude=_Foo --exclude=Def
From my example Bar is automaticly not included in example.md because there is no docstring. But maybe someone want add docstrings to function or classes in code for documentation, but want this class in the resulting markdown file.
This is my structure:
Here is my example file:
Beta Was this translation helpful? Give feedback.
All reactions