blob: 4587bf914980ed6d78e5fd20d620176a46606b40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import os
# Read The Docs service was changed 2024.
# https://about.readthedocs.com/blog/2024/07/addons-by-default/#how-does-it-affect-my-projects
html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "")
if os.environ.get("READTHEDOCS", "") == "True":
html_context = {
"READTHEDOCS": True
}
project = 'Linux FireWire subsystem'
author = 'Takashi Sakamoto'
copyright = '2023, Takashi Sakamoto'
html_theme = 'haiku'
html_static_path = [
'_static',
]
html_css_files = [
'chef-cat.css',
]
|