blob: d9d0dc9ce8c953ab19ec36940a61adc20a3bcd37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
from pathlib import Path
root_path = Path(__file__).parent.parent.resolve()
extensions = ['sphinx.ext.todo']
version = (root_path / 'VERSION').read_text(encoding='utf-8').strip()
project = 'lisp16'
copyright = '2022, Bozo Kopic'
master_doc = 'index'
html_theme = 'furo'
html_static_path = ['static']
html_css_files = ['custom.css']
html_use_index = False
html_show_sourcelink = False
html_show_sphinx = False
html_sidebars = {'**': ["sidebar/brand.html",
"sidebar/scroll-start.html",
"sidebar/navigation.html",
"sidebar/scroll-end.html"]}
todo_include_todos = True
|