-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathconf.py
42 lines (32 loc) · 978 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
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
extensions = [
"sphinx.ext.mathjax",
"jupyterlite_sphinx",
"myst_parser",
]
html_theme = "pydata_sphinx_theme"
html_logo = "_static/icon.svg"
jupyterlite_contents = "./custom_contents"
jupyterlite_bind_ipynb_suffix = False
strip_tagged_cells = True
# Enable this to use the provided sample overrides JSON file.
# jupyterlite_overrides = "sample_overrides.json"
# Enable this to unsilence JupyterLite and aid debugging
# within our own documentation.
# jupyterlite_silence = False
master_doc = "index"
# General information about the project.
project = "JupyterLite Sphinx extension"
# theme configuration
html_theme_options = {
"icon_links": [
{
"name": "GitHub",
"url": "https://github.com/jupyterlite/jupyterlite-sphinx",
"icon": "fa-brands fa-github",
}
]
}
html_static_path = ["_static"]
html_css_files = ["try_examples.css"]
suppress_warnings = ["myst.xref_missing"]