Skip to content

Commit

Permalink
⚙️ include private classes in code docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenithClown committed Aug 18, 2024
1 parent 554a6b8 commit 01e31b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 7 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']

# -- Autodoc configurations --------------------------------------------------
# https://stackoverflow.com/a/44638788/6623589 reduces code writing at automodule config
autodoc_default_options = {
"members": True,
"undoc-members": False,
"private-members": True
}


# -- Options for HTML output -------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion docs/normalize.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

```{eval-rst}
.. automodule:: nlpurify.normalize
:members:
```

</div>

0 comments on commit 01e31b0

Please sign in to comment.