|
73 | 73 | # Usually you set "language" from the command line for these cases.
|
74 | 74 | language = None
|
75 | 75 |
|
76 |
| -# order autodoc members by their order in the source |
77 |
| -autodoc_member_order = "bysource" |
78 |
| - |
79 |
| -# show base classes for autodoc |
80 |
| -autodoc_default_flags = ["show-inheritance", "inherited-members"] |
81 |
| - |
82 | 76 | # List of patterns, relative to source directory, that match files and
|
83 | 77 | # directories to ignore when looking for source files.
|
84 | 78 | # This pattern also affects html_static_path and html_extra_path.
|
|
90 | 84 | # The default language to highlight source code in.
|
91 | 85 | highlight_language = "python3"
|
92 | 86 |
|
| 87 | +# -- Extension Configuration ------------------------------------------------------ |
| 88 | + |
| 89 | +# -- sphinx_panel -- |
| 90 | + |
| 91 | +# Used to stop the extension from loading bootstrap twice since the `pydata_sphinx_theme` |
| 92 | +# already adds it for use. |
| 93 | +panels_add_boostrap_css = False |
| 94 | + |
| 95 | +# -- sphinx.ext.autodoc -- |
| 96 | + |
| 97 | +# show base classes for autodoc |
| 98 | +autodoc_default_flags = ["show-inheritance", "inherited-members"] |
| 99 | +# order autodoc members by their order in the source |
| 100 | +autodoc_member_order = "bysource" |
| 101 | + |
93 | 102 | # -- Options for HTML output -------------------------------------------------
|
94 | 103 |
|
95 | 104 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
|
123 | 132 | # or fully qualified paths (eg. https://...)
|
124 | 133 | html_css_files = [
|
125 | 134 | "css/interactive-widget.css",
|
126 |
| - "css/custom-max-width.css", |
127 | 135 | "css/fix-code-linenos.css",
|
128 | 136 | ]
|
129 | 137 |
|
|
223 | 231 | # A list of files that should not be packed into the epub file.
|
224 | 232 | epub_exclude_files = ["search.html"]
|
225 | 233 |
|
226 |
| - |
227 |
| -# -- Extension configuration ------------------------------------------------- |
228 |
| - |
229 | 234 | # -- Options for intersphinx extension ---------------------------------------
|
230 | 235 |
|
231 | 236 | # Example configuration for intersphinx: refer to the Python standard library.
|
|
0 commit comments