|
5 | 5 | import datetime |
6 | 6 | import os |
7 | 7 | import sys |
| 8 | +from typing import Any, Dict |
| 9 | + |
8 | 10 |
|
9 | 11 | # This causes documentation within the __init__ method to be pulled into the documentation properly |
10 | 12 | autoclass_content = "both" |
|
30 | 32 | "sphinx.ext.ifconfig", |
31 | 33 | "sphinx.ext.graphviz", |
32 | 34 | "sphinx.ext.inheritance_diagram", |
| 35 | + "sphinx.ext.todo", |
| 36 | + "sphinx.ext.viewcode", |
33 | 37 | "nbsphinx", |
34 | 38 | "sphinx_code_tabs", |
| 39 | + "sphinx_design", |
35 | 40 | "sphinx_copybutton" |
36 | 41 | ] |
37 | 42 |
|
|
62 | 67 |
|
63 | 68 | # The name of the Pygments (syntax highlighting) style to use. |
64 | 69 | pygments_style = None |
| 70 | +language = "en" |
65 | 71 |
|
| 72 | +html_theme = "furo" |
66 | 73 | html_logo = "_static/oracle_logo.png" |
67 | | - |
68 | | -# -- Options for HTML output ------------------------------------------------- |
69 | | - |
70 | | -# The theme to use for HTML and HTML Help pages. See the documentation for |
71 | | -# a list of builtin themes. |
72 | | -# |
73 | | -html_theme = "sphinx_rtd_theme" |
74 | | - |
75 | | -# Theme options are theme-specific and customize the look and feel of a theme |
76 | | -# further. For a list of options available for each theme, see the |
77 | | -# documentation. |
78 | | -# |
79 | | -html_theme_options = { |
80 | | - "logo_only": False, |
81 | | - # Toc options |
82 | | - "sticky_navigation": True, |
83 | | - "navigation_depth": 4, |
84 | | - "includehidden": True, |
85 | | - "titles_only": False, |
86 | | - "display_version": True, |
87 | | -} |
88 | | - |
89 | | -# Add any paths that contain custom static files (such as style sheets) here, |
90 | | -# relative to this directory. They are copied after the builtin static files, |
91 | | -# so a file named "default.css" will overwrite the builtin "default.css". |
92 | 74 | html_static_path = ["_static"] |
93 | | - |
94 | | -# Custom sidebar templates, must be a dictionary that maps document names |
95 | | -# to template names. |
96 | | -# |
97 | | -# The default sidebars (for documents that don't match any pattern) are |
98 | | -# defined by theme itself. Builtin themes are using these templates by |
99 | | -# default: ``['localtoc.html', 'relations.html', 'sourcelink.html', |
100 | | -# 'searchbox.html']``. |
101 | | -# |
102 | | -# html_sidebars = {} |
103 | | - |
104 | | - |
105 | | -# -- Options for HTMLHelp output --------------------------------------------- |
106 | | - |
107 | | -# Output file base name for HTML help builder. |
| 75 | +html_css_files = ["pied-piper-admonition.css"] |
108 | 76 | htmlhelp_basename = "pydoc" |
109 | 77 |
|
110 | 78 |
|
|
0 commit comments