-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
53 lines (44 loc) · 1.48 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
site_name: GSD
site_description: The documentation for the reference implementation of generalised score distribution in python.
repo_url: https://github.com/gsd-authors/gsd
repo_name: gsd-authors/gsd
theme:
name: "material"
features:
- navigation.sections
- toc.integrate
- header.autohide
markdown_extensions:
- pymdownx.arithmatex: # Render LaTeX via katex
generic: true
- pymdownx.superfences # Seems to enable syntax highlighting when used with the Material theme.
- pymdownx.details # Allowing hidden expandable regions denoted by ???
- pymdownx.snippets: # Include one Markdown file into another
base_path: docs
- admonition
- toc:
permalink: "¤" # Adds a clickable permalink to each section heading
toc_depth: 4
extra_javascript:
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
plugins:
- search
- mknotebooks # Jupyter notebooks
- mkdocstrings:
handlers:
python:
options:
show_source: false
show_root_heading: true
docstring_style: sphinx
nav:
- 'index.md'
- 'api.md'
- Colab: 'examples/colab.ipynb'
- Bayes: 'examples/bayes.ipynb'
- scipy: 'examples/scipy.ipynb'
- VQEG: 'examples/vqeg.ipynb'