Skip to content

Commit 443aa3e

Browse files
Update API docs Sphinx configuration
- Do not use a different color for visited links - Ignore Jupyter checkpoints in build
1 parent 4135976 commit 443aa3e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

doc/conf.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,21 @@
6161
# List of patterns, relative to source directory, that match files and directories to
6262
# ignore when looking for source files.
6363
# This pattern also affects html_static_path and html_extra_path.
64-
exclude_patterns = ["_templates", "_build", "Thumbs.db", ".DS_Store"]
65-
64+
exclude_patterns = [
65+
"_templates",
66+
"_build",
67+
"Thumbs.db",
68+
".DS_Store",
69+
"**.ipynb_checkpoints",
70+
]
6671
# HTML Theme
6772
# Theme colors and fonts come from https://brand.orange.com
6873
html_theme = "furo"
6974
html_theme_options = {
7075
"light_css_variables": {
7176
"color-brand-primary": "#FF7900",
7277
"color-brand-content": "#F16E00",
78+
"color-brand-visited": "#FF7900",
7379
"color-sidebar-background": "#FFFFFF",
7480
"color-highlighted-background": "#FFD200",
7581
"color-admonition-title--note": "#FF7900",
@@ -79,6 +85,7 @@
7985
"dark_css_variables": {
8086
"color-brand-primary": "#FF7900",
8187
"color-brand-content": "#F16E00",
88+
"color-brand-visited": "#FF7900",
8289
"color-sidebar-background": "#000000",
8390
"color-highlighted-background": "#FFD200",
8491
"color-admonition-title--note": "#FF7900",

0 commit comments

Comments
 (0)