File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66# -- Project information -----------------------------------------------------
77# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88
9- project = 'VocalPy'
109copyright = '2024, David Nicholson'
1110author = 'David Nicholson'
1211
1312# -- General configuration ---------------------------------------------------
1413# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1514
1615extensions = [
16+ 'myst_parser' ,
1717 'sphinx.ext.autodoc' ,
1818 'sphinx.ext.autosummary' ,
1919 'sphinx.ext.coverage' ,
3131]
3232
3333templates_path = ['_templates' ]
34+ source_suffix = ['.rst' , '.md' ]
3435exclude_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+
4256html_static_path = ['_static' ]
57+
58+ myst_enable_extensions = [
59+ "colon_fence" ,
60+ "html_admonition" ,
61+ "html_image" ,
62+ ]
You can’t perform that action at this time.
0 commit comments