Skip to content

Commit

Permalink
docs: render only public API (#19)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck authored Sep 27, 2023
1 parent 296ef19 commit fcc5d8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# ones.
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
# "sphinx.ext.viewcode",
"autoapi.extension",
"sphinx_rtd_theme",
"m2r2"
Expand All @@ -43,6 +43,8 @@
# Document Python Code
autoapi_type = 'python'
autoapi_dirs = ['../serializable']
# see https://sphinx-autoapi.readthedocs.io/en/latest/reference/config.html#confval-autoapi_options
autoapi_options = ['show-module-summary', 'members', 'undoc-members', 'inherited-members', 'show-inheritance']

source_suffix = ['.rst', '.md']

Expand Down

0 comments on commit fcc5d8e

Please sign in to comment.