-
Notifications
You must be signed in to change notification settings - Fork 65
/
conf.py
32 lines (31 loc) · 864 Bytes
/
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
author = "Project Jupyter"
copyright = "2021"
exclude_patterns = ["_build", ".nox", ".github"]
extensions = [
"myst_parser",
"sphinx_copybutton",
"sphinx_external_toc",
"sphinx.ext.intersphinx",
"sphinx_book_theme",
"sphinxcontrib.mermaid",
]
html_baseurl = "https://jupyter.org/enhancement-proposals"
html_favicon = ""
html_logo = ""
html_sourcelink_suffix = ""
html_theme = "sphinx_book_theme"
html_theme_options = {
"search_bar_text": "Search the docs...",
"repository_url": "https://github.com/jupyter/enhancement-proposals",
"repository_branch": "master",
"home_page_in_toc": True,
"use_repository_button": True,
"use_edit_page_button": True,
"use_issues_button": True,
}
html_title = "Jupyter Enhancement Proposals"
myst_enable_extensions = [
"colon_fence",
"linkify",
]
pygments_style = "sphinx"