diff options
author | tgingold <tgingold@users.noreply.github.com> | 2022-12-24 11:09:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 11:09:02 +0100 |
commit | fd0c0bc0b8357f58d44f9b7e03367d5c2e3e906f (patch) | |
tree | 08fbc4aee98f7a4a7cf5c8497fca8e2ad6ea3b0d /doc/conf.py | |
parent | 5bca94f83b0d44297f943ff0d0237ec216fc29e9 (diff) | |
parent | 2cfa55afd77e9d561a44f6adba827eadfbc87c22 (diff) | |
download | ghdl-fd0c0bc0b8357f58d44f9b7e03367d5c2e3e906f.tar.gz ghdl-fd0c0bc0b8357f58d44f9b7e03367d5c2e3e906f.tar.bz2 ghdl-fd0c0bc0b8357f58d44f9b7e03367d5c2e3e906f.zip |
Merge pull request #2283 from Paebbels/paebbels/doc
Sphinx updates
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 38 |
1 files changed, 24 insertions, 14 deletions
diff --git a/doc/conf.py b/doc/conf.py index 7bbb1e054..3ed641b56 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -63,7 +63,7 @@ exclude_patterns = [ ] # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'stata-dark' +pygments_style = 'manni' # ============================================================================== @@ -174,26 +174,24 @@ extensions = [ # Standard Sphinx extensions 'sphinx.ext.autodoc', 'sphinx.ext.extlinks', + 'sphinx.ext.inheritance_diagram', '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', +# 'btd.sphinx.graphviz', +# 'btd.sphinx.inheritance_diagram', # Other extensions # 'recommonmark', 'exec', -# 'DocumentMember', 'sphinx_fontawesome', 'sphinx_autodoc_typehints', - - # local extensions (patched) 'autoapi.sphinx', ] @@ -202,7 +200,7 @@ extensions = [ # Sphinx.Ext.InterSphinx # ============================================================================== intersphinx_mapping = { - 'python': ('https://docs.python.org/3.6/', None), + 'python': ('https://docs.python.org/3', None), 'cosim': ('https://ghdl.github.io/ghdl-cosim', None), 'poc': ('https://poc-library.readthedocs.io/en/release', None), 'vhdlmodel': ('https://vhdl.github.io/pyVHDLModel', None), @@ -215,12 +213,7 @@ 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_typehints = "both" # ============================================================================== @@ -230,6 +223,17 @@ graphviz_output_format = "svg" # ============================================================================== +# Sphinx.Ext.Inheritance_Diagram +# ============================================================================== +inheritance_node_attrs = { +# "shape": "ellipse", +# "fontsize": 14, +# "height": 0.75, + "color": "dodgerblue1", + "style": "filled" +} + +# ============================================================================== # Sphinx.Ext.ToDo # ============================================================================== # If true, `todo` and `todoList` produce output, else they produce nothing. @@ -238,6 +242,12 @@ todo_link_only = True # ============================================================================== +# Sphinx.Ext.Coverage +# ============================================================================== +coverage_show_missing_items = True + + +# ============================================================================== # Sphinx.Ext.ExtLinks # ============================================================================== extlinks = { |