mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
29 lines
668 B
Python
29 lines
668 B
Python
project = 'RetroDECK'
|
|
author = 'RetroDECK Team'
|
|
|
|
extensions = [
|
|
# 'sphinx.ext.autodoc',
|
|
# 'sphinx.ext.doctest',
|
|
# 'sphinx.ext.intersphinx',
|
|
# 'sphinx.ext.todo',
|
|
# 'sphinx.ext.coverage',
|
|
# 'sphinx.ext.mathjax',
|
|
# 'sphinx.ext.ifconfig',
|
|
# 'sphinx.ext.viewcode',
|
|
# 'sphinx_rtd_theme',
|
|
'myst_parser',
|
|
'mkdocs-material'
|
|
]
|
|
|
|
language = 'English'
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
html_theme = "sphinx_rtd_theme"
|
|
|
|
# The suffix(es) of source filenames.
|
|
# You can specify multiple suffix as a list of string:
|
|
#
|
|
source_suffix = [".md"]
|
|
# source_suffix = '.rst'
|
|
|
|
# The master toctree document.
|
|
master_doc = "index" |