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]
11
12latex_engine = 'xelatex' # allow us to build Unicode chars
13
14autosectionlabel_prefix_document = True
15hoverxref_auto_ref = True
16hoverxref_roles = [
17 'term',
18]
19
20# Include all your settings here
21html_theme = 'sphinx_rtd_theme'
22
23js_source_path = '../src/'
24html_extra_path = ['static']
25html_context = {
26 "comment": "This comment is injected manually as a test.",
27}
28
29jinja2_env_kwargs = {
30 "extensions": ["jinja2.ext.loopcontrols"],
31}
32
33
34
35