File tree 2 files changed +12
-9
lines changed
2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
- Sphinx
2
- sphinx_rtd_theme
1
+ sphinx
2
+ myst-parser
3
+ furo
Original file line number Diff line number Diff line change 8
8
'sphinx.ext.autodoc' ,
9
9
'sphinx.ext.todo' ,
10
10
'sphinx.ext.viewcode' ,
11
+ 'myst_parser' ,
11
12
]
12
13
13
14
templates_path = ['_templates' ]
22
23
# The full version, including alpha/beta/rc tags.
23
24
release = '1.0'
24
25
26
+ html_title = 'Python.org Website'
27
+
25
28
pygments_style = 'sphinx'
26
29
27
- try :
28
- import sphinx_rtd_theme
29
- except ImportError :
30
- html_theme = 'default'
31
- else :
32
- html_theme = 'sphinx_rtd_theme'
33
- html_theme_path = [sphinx_rtd_theme .get_html_theme_path ()]
30
+ html_theme = "furo"
34
31
35
32
htmlhelp_basename = 'PythonorgWebsitedoc'
36
33
34
+ source_suffix = {
35
+ '.rst' : 'restructuredtext' ,
36
+ '.md' : 'markdown' ,
37
+ }
38
+
37
39
38
40
# -- Options for LaTeX output ---------------------------------------------
39
41
You can’t perform that action at this time.
0 commit comments