Skip to content

Commit 6e63af6

Browse files
committed
Make config changes in conf.py
1 parent 91f54bc commit 6e63af6

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

docs/conf.py

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
# -- Project information -----------------------------------------------------
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

9-
project = 'VocalPy'
109
copyright = '2024, David Nicholson'
1110
author = 'David Nicholson'
1211

1312
# -- General configuration ---------------------------------------------------
1413
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1514

1615
extensions = [
16+
'myst_parser',
1717
'sphinx.ext.autodoc',
1818
'sphinx.ext.autosummary',
1919
'sphinx.ext.coverage',
@@ -31,12 +31,32 @@
3131
]
3232

3333
templates_path = ['_templates']
34+
source_suffix = ['.rst', '.md']
3435
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
3536

3637

3738

3839
# -- Options for HTML output -------------------------------------------------
3940
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
4041

41-
html_theme = 'pdyata_sphinx_theme'
42+
html_title = ""
43+
html_theme = 'pydata_sphinx_theme'
44+
html_theme_options = {
45+
"logo": {
46+
"text": "",
47+
"image_light": "",
48+
"image_dark": "",
49+
},
50+
"secondary_sidebar_items": [],
51+
}
52+
html_sidebars = {
53+
"index": [],
54+
}
55+
4256
html_static_path = ['_static']
57+
58+
myst_enable_extensions = [
59+
"colon_fence",
60+
"html_admonition",
61+
"html_image",
62+
]

0 commit comments

Comments
 (0)