-
Notifications
You must be signed in to change notification settings - Fork 16
/
conf.py
92 lines (91 loc) · 2.47 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import subprocess
subprocess.check_call(["doit", "lite"])
###############################################################################
# Auto-generated by `jupyter-book config`
# If you wish to continue using _config.yml, make edits to that file and
# re-generate this one.
###############################################################################
author = "robots-from-jupyter"
comments_config = {"hypothesis": False, "utterances": False}
copyright = "2022"
exclude_patterns = [
"**.ipynb_checkpoints",
".DS_Store",
".doit*",
".nox",
".pytest_cache",
"Thumbs.db",
"_build",
"build",
"dist",
"jupyter_execute",
"lite",
"*.nix"
]
execution_allow_errors = False
execution_excludepatterns = []
execution_in_temp = False
execution_timeout = 30
extensions = [
"sphinx_togglebutton",
"sphinx_copybutton",
"myst_nb",
"jupyter_book",
"sphinx_thebe",
"sphinx_comments",
"sphinx_external_toc",
"sphinx.ext.intersphinx",
"sphinx_panels",
"sphinx_book_theme",
"sphinx_jupyterbook_latex",
]
external_toc_exclude_missing = False
external_toc_path = "_toc.yml"
html_baseurl = ""
html_extra_path = ["lite/_"]
html_favicon = ""
html_logo = "robotframework.png"
html_sourcelink_suffix = ""
html_theme = "sphinx_book_theme"
html_theme_options = {
"search_bar_text": "Search this book...",
"launch_buttons": {
"notebook_interface": "classic",
"binderhub_url": "https://mybinder.org",
"jupyterhub_url": "",
"thebe": False,
"colab_url": "",
},
"path_to_docs": "",
"repository_url": "https://github.com/executablebooks/jupyter-book",
"repository_branch": "master",
"google_analytics_id": "",
"extra_navbar": 'Powered by <a href="https://jupyterbook.org">Jupyter Book</a>',
"extra_footer": "",
"home_page_in_toc": True,
"use_repository_button": False,
"use_edit_page_button": False,
"use_issues_button": False,
}
html_title = "RobotKernel"
jupyter_cache = ""
jupyter_execute_notebooks = "off"
language = None
latex_engine = "pdflatex"
latex_logo = "robotframework.png"
myst_enable_extensions = [
"colon_fence",
"dollarmath",
"linkify",
"substitution",
"tasklist",
]
myst_url_schemes = ["mailto", "http", "https"]
nb_output_stderr = "show"
numfig = True
panels_add_bootstrap_css = False
pygments_style = "sphinx"
suppress_warnings = ["myst.domains"]
templates_path = ["_templates"]
use_jupyterbook_latex = True
use_multitoc_numbering = True