Archived
1

feat: Сборка и запуск

This commit is contained in:
2024-05-20 17:54:32 +03:00
parent dbe96ea852
commit 0b251c39a6
19 changed files with 372 additions and 0 deletions

25
source/conf.py Normal file
View File

@@ -0,0 +1,25 @@
project = 'Space Station 14 Docs'
copyright = '2024, Voomra'
author = 'Voomra'
# General options
extensions = [
'sphinx.ext.autodoc',
'sphinx_rtd_theme',
]
templates_path = ['_templates']
language = 'ru'
# Source options
source_encoding = 'utf-8-sig'
source_suffix = ['.rst']
# HTML options
html_theme = 'sphinx_rtd_theme'
html_use_index = True
html_show_sourcelink = False
html_static_path = ['_static']
html_theme_options = {
'collapse_navigation': False,
'sticky_navigation': True
}