mirror of
https://projects.blender.org/infrastructure/gitea-custom.git
synced 2024-12-22 15:23:32 -05:00
23 lines
410 B
Python
23 lines
410 B
Python
|
# Configuration file for RST preview.
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
# Extensions
|
||
|
sys.path.append(os.path.abspath('exts'))
|
||
|
extensions = [
|
||
|
'reference',
|
||
|
'peertube',
|
||
|
'sphinx.ext.mathjax',
|
||
|
'sphinx.ext.intersphinx',
|
||
|
'sphinx.ext.todo',
|
||
|
]
|
||
|
|
||
|
# Project
|
||
|
project = 'projects.blender.org'
|
||
|
root_doc = 'contents'
|
||
|
|
||
|
# Theme: epub hides all navigation, sidebars, footers.
|
||
|
html_theme = 'epub'
|
||
|
html_permalinks = False
|