conf.py

Sphinx configuration file used to build this docs:

conf.py
 1# Default settings
 2project = 'Test Builds'
 3extensions = [
 4    'sphinx_autorun',
 5    'notfound.extension',
 6    'hoverxref.extension',
 7    'sphinx_js',
 8    'sphinx_tabs.tabs',
 9    'sphinx_jinja2',
10    'sphinx_build_compatibility.extension',
11]
12
13latex_engine = 'xelatex'  # allow us to build Unicode chars
14
15autosectionlabel_prefix_document = True
16hoverxref_auto_ref = True
17hoverxref_roles = [
18    'term',
19]
20
21# Include all your settings here
22html_theme = 'sphinx_rtd_theme'
23
24js_source_path = '../src/'
25html_extra_path = ['static']
26html_context = {
27    "comment": "This comment is injected manually as a test.",
28}
29
30jinja2_env_kwargs = {
31    "extensions": ["jinja2.ext.loopcontrols"],
32}
33
34
35
36