aboutsummaryrefslogtreecommitdiffstats
path: root/doc/conf.py
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-01-04 16:07:11 +0100
committertgingold <tgingold@users.noreply.github.com>2021-01-05 18:50:44 +0100
commit29755634957933656e0e318a64bd5806b52cbf1c (patch)
tree24afab0330dcac51e1694f55f6facbf0f6607274 /doc/conf.py
parentd3ea0331006011861f539cbbaa60c8760b0fc620 (diff)
downloadghdl-29755634957933656e0e318a64bd5806b52cbf1c.tar.gz
ghdl-29755634957933656e0e318a64bd5806b52cbf1c.tar.bz2
ghdl-29755634957933656e0e318a64bd5806b52cbf1c.zip
Enabled missing Sphinx extensions. Fixed role name cls to class.
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 7913baeda..ce6c134e7 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -177,11 +177,16 @@ extensions = [
'sphinx.ext.extlinks',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
- 'sphinx.ext.graphviz',
+# 'sphinx.ext.graphviz',
'sphinx.ext.mathjax',
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
+ # BuildTheDocs extensions
+ 'btd.sphinx.autoprogram',
+ 'btd.sphinx.graphviz',
+ 'btd.sphinx.inheritance_diagram',
+
# Other extensions
'recommonmark',
'exec',
@@ -210,12 +215,12 @@ intersphinx_mapping = {
# ==============================================================================
# see: https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#configuration
autodoc_member_order = "bysource" # alphabetical, groupwise, bysource
-autodoc_default_options = {
- "members": True,
- 'undoc-members': True,
- #'private-members': True,
- 'inherited-members': True,
-}
+# autodoc_default_options = {
+# "members": True,
+# 'undoc-members': True,
+# #'private-members': True,
+# 'inherited-members': True,
+# }
# ==============================================================================