-
Notifications
You must be signed in to change notification settings - Fork 16
/
mkdocs.yml
85 lines (74 loc) · 2.01 KB
/
mkdocs.yml
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
site_name: pyqtorch
repo_url: "https://github.com/pasqal-io/pyqtorch"
repo_name: "pyqtorch"
nav:
- pyqtorch in a Nutshell: index.md
- API: api.md
- How to Contribute: CONTRIBUTING.md
- Code of Conduct: CODE_OF_CONDUCT.md
- Advanced Features:
- Differentiation: differentiation.md
- Use Arbitrary Expressions as Gate Parameters via Embedding: embed.md
- Analog Operations: analog.md
- Noisy simulation: noise.md
- Quantum Dropout: dropout.md
- CUDA Profiling and debugging: cuda_debugging.md
- Time-dependent simulation: time_dependent.md
- Tutorials:
- Fitting a nonlinear function: fitting_a_function.md
- Solving a partial differential equation using DQC: pde.md
theme:
name: material
features:
- content.code.annotate
- navigation.indexes
- navigation.sections
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light green
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: light green
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
- admonition # for notes
- pymdownx.arithmatex: # for mathjax
generic: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- search
- section-index
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
- mkdocs-jupyter:
theme: light
- markdown-exec
extra_css:
- extras/css/mkdocstrings.css
- extras/css/colors.css
- extras/css/home.css
# For mathjax
extra_javascript:
- extras/javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
watch:
- pyqtorch