diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2022-08-02 01:20:12 +0200 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2022-09-25 02:40:23 +0200 |
| commit | 288727f09a1b3458c268497d111349e608c3f9fa (patch) | |
| tree | d62565249fa3c7127856c65405752572fc41aca9 /docs/conf.py | |
Diffstat (limited to 'docs/conf.py')
| -rw-r--r-- | docs/conf.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..d9d0dc9 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,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 |
