diff options
-rw-r--r-- | bitbake/doc/conf.py | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/bitbake/doc/conf.py b/bitbake/doc/conf.py index f5a3aa56c1..4ff90e8dbf 100644 --- a/bitbake/doc/conf.py +++ b/bitbake/doc/conf.py | |||
@@ -65,8 +65,14 @@ html_theme = 'sphinx_rtd_theme' | |||
65 | # so a file named "default.css" will overwrite the builtin "default.css". | 65 | # so a file named "default.css" will overwrite the builtin "default.css". |
66 | html_static_path = ['sphinx-static'] | 66 | html_static_path = ['sphinx-static'] |
67 | 67 | ||
68 | html_context = { | 68 | # Add customm CSS and JS files |
69 | 'css_files': [ | 69 | html_css_files = ['theme_overrides.css'] |
70 | '_static/theme_overrides.css', | 70 | |
71 | ], | 71 | # Hide 'Created using Sphinx' text |
72 | } | 72 | html_show_sphinx = False |
73 | |||
74 | # Add 'Last updated' on each page | ||
75 | html_last_updated_fmt = '%b %d, %Y' | ||
76 | |||
77 | # Remove the trailing 'dot' in section numbers | ||
78 | html_secnumber_suffix = " " | ||