-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconf.py
59 lines (48 loc) · 1.8 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
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'Quantum Native Dojo'
copyright = '2024, Contributors to Quantum Native Dojo'
author = 'Contributors to Quantum Native Dojo'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
'nbsphinx',
'sphinx.ext.mathjax',
]
# extensions = [
# 'sphinx.ext.autodoc',
# 'sphinx.ext.viewcode',
# 'myst_parser',
# 'sphinx_design',
# 'sphinx_copybutton',
# ]
# myst_enable_extensions = [
# 'amsmath',
# 'attrs_block',
# 'colon_fence',
# 'deflist',
# 'dollarmath',
# 'fieldlist',
# 'tasklist',
# ]
templates_path = ['_templates']
exclude_patterns = ['_build', '**.ipynb_checkpoints', 'Thumbs.db', '.DS_Store']
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'sphinx_qndojo_theme'
html_theme_path = ['.']
html_theme_options = {
"theme_display_version": False,
}
html_favicon = None
html_show_sphinx = False
mathjax_path = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML'
mathjax_config = {
'CommonHTML': {
'undefinedFamily': '"Source Serif Pro", "Yakumono", "Noto Serif JP", "Hiragino Mincho ProN", "STIXGeneral", "Arial Unicode MS", serif'
}
}