Add Markdown Support

This commit is contained in:
kokarare1212 2021-02-25 18:41:11 +09:00
parent 7bb4f46d19
commit 50ea136d08
1 changed files with 13 additions and 13 deletions

View File

@ -14,17 +14,6 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))
# -- Markdown ----------------------------------------------------------------
from recommonmark.parser import CommonMarkParser
source_parsers = {
'.md': CommonMarkParser,
}
source_suffix = ['.rst', '.md']
html_theme = 'sphinx_rtd_theme'
# -- Project information -----------------------------------------------------
project = 'librespot-python'
@ -38,6 +27,7 @@ author = 'kokarare1212'
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'recommonmark'
]
# Add any paths that contain templates here, relative to this directory.
@ -54,9 +44,19 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme = 'sphinx_rtd_theme'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ['_static']
# -- Markdown ----------------------------------------------------------------
source_suffix = ['.rst', '.md']
source_parsers = {
'.md': 'recommonmark.parser.CommonMarkParser',
}