Skip to content

Commit 4d51ad6

Browse files
Update conf.py
1 parent d91e075 commit 4d51ad6

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

docs/source/conf.py

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
autoapi_type = 'python'
2020
autoapi_dirs = [os.path.abspath('../../manify')]
21-
autoapi_ignore = ["*/utils/*"]
21+
22+
23+
# autoapi_ignore = ["*/utils/*"]
2224

2325
templates_path = ['_templates']
2426
exclude_patterns = []
@@ -32,13 +34,22 @@
3234
}
3335
autoclass_content = "class"
3436
autoapi_options = [
35-
"members", # pull in documented members
36-
"imported-members", # if you want to re-export things
37+
"members",
38+
"undoc-members",
39+
"imported-members",
3740
"show-inheritance",
38-
# note: NO 'undoc-members' here
41+
"show-module-summary",
3942
]
40-
# autodoc_typehints = "description"
43+
44+
# conf.py
45+
rst_epilog = """
46+
.. |---| replace:: ------------
47+
"""
48+
4149
html_theme = "sphinx_rtd_theme"
4250
html_static_path = ['_static']
4351
autodoc_typehints = "none"
4452

53+
rst_epilog = """
54+
.. |K| replace:: :math:`K` # Example: Render K as a math symbol
55+
"""

0 commit comments

Comments
 (0)