1717
1818# -- Project information -----------------------------------------------------
1919
20- project = ' Pythonスターターガイド'
21- copyright = ' 2021, Python ED'
22- author = ' Python ED'
20+ project = " Pythonスターターガイド"
21+ copyright = " 2021, Python ED"
22+ author = " Python ED"
2323
2424
2525# -- General configuration ---------------------------------------------------
2828# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
2929# ones.
3030extensions = [
31+ "myst_parser" ,
3132]
3233
3334# Add any paths that contain templates here, relative to this directory.
34- templates_path = [' _templates' ]
35+ templates_path = [" _templates" ]
3536
3637# The language for content autogenerated by Sphinx. Refer to documentation
3738# for a list of supported languages.
3839#
3940# This is also used if you do content translation via gettext catalogs.
4041# Usually you set "language" from the command line for these cases.
41- language = 'ja'
42+ language = "ja"
4243
4344# List of patterns, relative to source directory, that match files and
4445# directories to ignore when looking for source files.
5152# The theme to use for HTML and HTML Help pages. See the documentation for
5253# a list of builtin themes.
5354#
54- html_theme = ' alabaster'
55+ html_theme = " alabaster"
5556
5657# Add any paths that contain custom static files (such as style sheets) here,
5758# relative to this directory. They are copied after the builtin static files,
5859# so a file named "default.css" will overwrite the builtin "default.css".
59- html_static_path = ['_static' ]
60+ html_static_path = ["_static" ]
61+
62+ source_suffix = {
63+ ".rst" : "restructuredtext" ,
64+ ".md" : "markdown" ,
65+ }
0 commit comments