File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 6
6
import sys
7
7
from pathlib import Path
8
8
9
- sys .path .insert (0 , Path (".." ). resolve ( ))
9
+ sys .path .insert (0 , str ( Path (__file__ ). parent . parent ))
10
10
11
11
# -- Project information -----------------------------------------------------
12
12
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
21
21
# -- General configuration ---------------------------------------------------
22
22
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
23
23
24
- extensions = ["myst_parser" , "sphinx_design" ]
24
+ extensions = [
25
+ "myst_parser" ,
26
+ "sphinx_design" ,
27
+ ]
25
28
26
29
templates_path = ["_templates" ]
27
30
exclude_patterns = ["_build" , "Thumbs.db" , ".DS_Store" ]
31
34
32
35
html_theme = "furo"
33
36
html_static_path = ["_static" ]
37
+ html_css_files = ["custom.css" ]
34
38
35
39
myst_enable_extensions = ["colon_fence" , "deflist" , "dollarmath" , "tasklist" ]
36
40
myst_enable_checkboxes = True
You can’t perform that action at this time.
0 commit comments