NiklasRosenstein / pydoc-markdown

Create Python API documentation in Markdown format.
http://niklasrosenstein.github.io/pydoc-markdown/
Other
460 stars 105 forks source link

Add support for filtering private classes #334

Open sebromero opened 3 weeks ago

sebromero commented 3 weeks ago

The logic in the filter class prevented private classes (those whose name starts with _) from being filtered, when exclude_private is set to true. I rearranged the checks from most specific (those for modules) to most generic to resolve this limitation.