We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e1f765 commit 14f0ebeCopy full SHA for 14f0ebe
pyproject.toml
@@ -6,7 +6,9 @@ packages = ["modulino"]
6
[[tool.pydoc-markdown.processors]]
7
type = "filter"
8
skip_empty_modules = true
9
-expression = "not \"modulino.lib\" in name and default()"
+do_not_filter_modules = false
10
+# Private classes need to be excluded explicitly since this is not supported yet by the filter processor
11
+expression = "not 'modulino.lib' in name and not (name.startswith('_') and not name.endswith('_')) and default()"
12
13
14
type = "google"
0 commit comments