|
29 | 29 | # Add any Sphinx extension module names here, as strings. They can be
|
30 | 30 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
31 | 31 | # ones.
|
32 |
| -extensions = [] |
| 32 | +extensions = ['sphinx.ext.autodoc', |
| 33 | + 'sphinx.ext.doctest'] |
33 | 34 |
|
34 | 35 | # Add any paths that contain templates here, relative to this directory.
|
35 | 36 | templates_path = ['_templates']
|
|
74 | 75 |
|
75 | 76 | # List of patterns, relative to source directory, that match files and
|
76 | 77 | # directories to ignore when looking for source files.
|
77 |
| -exclude_patterns = ['_build'] |
| 78 | +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
78 | 79 |
|
79 | 80 | # The reST default role (used for this markup: `text`) to use for all
|
80 | 81 | # documents.
|
|
147 | 148 |
|
148 | 149 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
149 | 150 | # using the given strftime format.
|
150 |
| -#html_last_updated_fmt = '%b %d, %Y' |
| 151 | +html_last_updated_fmt = '%Y-%b-%d' |
151 | 152 |
|
152 | 153 | # If true, SmartyPants will be used to convert quotes and dashes to
|
153 | 154 | # typographically correct entities.
|
154 | 155 | #html_use_smartypants = True
|
155 | 156 |
|
156 | 157 | # Custom sidebar templates, maps document names to template names.
|
157 |
| -#html_sidebars = {} |
| 158 | +html_sidebars = { |
| 159 | + '**': [ |
| 160 | + 'relations.html', # needs 'show_related': True theme option to display |
| 161 | + 'searchbox.html', |
| 162 | + ] |
| 163 | +} |
158 | 164 |
|
159 | 165 | # Additional templates that should be rendered to pages, maps page names to
|
160 | 166 | # template names.
|
|
0 commit comments