forked from HEP-FCC/fcc-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.py
61 lines (49 loc) · 1.1 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
# import sphinx_rtd_theme
project = 'FCC Tutorials'
copyright = '2023, CERN'
html_logo = '_static/img/fcc-logo-light.png'
html_favicon = '_static/img/favicon.ico'
html_theme = 'sphinx_rtd_theme'
exclude_patterns = [
'venv',
'.github',
'README.md',
'archive'
]
html_theme = "sphinx_rtd_theme"
html_context = {
'display_github': True,
'github_user': 'HEP-FCC',
'github_repo': 'fcc-tutorials',
'github_version': 'master/',
}
extensions = [
'myst_parser',
'sphinx_rtd_theme',
'sphinx_togglebutton',
'sphinx_copybutton',
'sphinx_multiversion',
]
myst_enable_extensions = [
"dollarmath",
"amsmath",
'colon_fence',
'html_admonition'
]
myst_heading_anchors = 3
html_static_path = [
'_static'
]
html_css_files = [
'css/custom-admonitions.css'
]
templates_path = [
'_templates',
]
smv_tag_whitelist = r'^(?!(v0.1.0|v0.2.0))$'
smv_branch_whitelist = r'^(?!(HEAD|vvolkl-patch-|starterkit|gh-pages)).*$'
smv_remote_whitelist = r'^(origin)$'
linkcheck_ignore = [
# FIXME: The URLs have changed
r'https://research\.cs\.wisc\.edu/htcondor/.*',
]