|
17 | 17 |
|
18 | 18 | # -- Project information -----------------------------------------------------
|
19 | 19 |
|
20 |
| -project = 'Basic Sphinx Example Project' |
21 |
| -copyright = '2022, Read the Docs core team' |
22 |
| -author = 'Read the Docs core team' |
| 20 | +project = "Basic Sphinx Example Project" |
| 21 | +copyright = "2022, Read the Docs core team" |
| 22 | +author = "Read the Docs core team" |
23 | 23 |
|
24 | 24 |
|
25 | 25 | # -- General configuration ---------------------------------------------------
|
26 | 26 | # -- General configuration
|
27 | 27 |
|
28 | 28 | extensions = [
|
29 |
| - 'sphinx.ext.duration', |
30 |
| - 'sphinx.ext.doctest', |
31 |
| - 'sphinx.ext.autodoc', |
32 |
| - 'sphinx.ext.autosummary', |
33 |
| - 'sphinx.ext.intersphinx', |
| 29 | + "sphinx.ext.duration", |
| 30 | + "sphinx.ext.doctest", |
| 31 | + "sphinx.ext.autodoc", |
| 32 | + "sphinx.ext.autosummary", |
| 33 | + "sphinx.ext.intersphinx", |
34 | 34 | ]
|
35 | 35 |
|
36 | 36 | intersphinx_mapping = {
|
37 |
| - 'python': ('https://docs.python.org/3/', None), |
38 |
| - 'sphinx': ('https://www.sphinx-doc.org/en/master/', None), |
| 37 | + "rtd": ("https://docs.readthedocs.io/en/stable/", None), |
| 38 | + "python": ("https://docs.python.org/3/", None), |
| 39 | + "sphinx": ("https://www.sphinx-doc.org/en/master/", None), |
39 | 40 | }
|
40 |
| -intersphinx_disabled_domains = ['std'] |
| 41 | +intersphinx_disabled_domains = ["std"] |
41 | 42 |
|
42 |
| -templates_path = ['_templates'] |
| 43 | +templates_path = ["_templates"] |
43 | 44 |
|
44 | 45 | # -- Options for EPUB output
|
45 |
| -epub_show_urls = 'footnote' |
| 46 | +epub_show_urls = "footnote" |
46 | 47 |
|
47 | 48 | # List of patterns, relative to source directory, that match files and
|
48 | 49 | # directories to ignore when looking for source files.
|
49 | 50 | # This pattern also affects html_static_path and html_extra_path.
|
50 |
| -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 51 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
51 | 52 |
|
52 | 53 | # -- Options for HTML output -------------------------------------------------
|
53 | 54 |
|
54 | 55 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
55 | 56 | # a list of builtin themes.
|
56 | 57 | #
|
57 |
| -html_theme = 'sphinx_rtd_theme' |
| 58 | +html_theme = "sphinx_rtd_theme" |
58 | 59 |
|
59 | 60 | # Add any paths that contain custom static files (such as style sheets) here,
|
60 | 61 | # relative to this directory. They are copied after the builtin static files,
|
61 | 62 | # so a file named "default.css" will overwrite the builtin "default.css".
|
62 |
| -html_static_path = ['_static'] |
| 63 | +html_static_path = ["_static"] |
0 commit comments