diff --git a/docs/conf.py b/docs/conf.py index 10a924f..53938c0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 ------------------------------------------------- diff --git a/docs/normalize.md b/docs/normalize.md index 130dd76..3098ba0 100644 --- a/docs/normalize.md +++ b/docs/normalize.md @@ -4,7 +4,6 @@ ```{eval-rst} .. automodule:: nlpurify.normalize - :members: ```