summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/doc/conf.py16
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".
66html_static_path = ['sphinx-static'] 66html_static_path = ['sphinx-static']
67 67
68html_context = { 68# Add customm CSS and JS files
69 'css_files': [ 69html_css_files = ['theme_overrides.css']
70 '_static/theme_overrides.css', 70
71 ], 71# Hide 'Created using Sphinx' text
72} 72html_show_sphinx = False
73
74# Add 'Last updated' on each page
75html_last_updated_fmt = '%b %d, %Y'
76
77# Remove the trailing 'dot' in section numbers
78html_secnumber_suffix = " "