-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
111 lines (105 loc) · 3.09 KB
/
mkdocs.yml
File metadata and controls
111 lines (105 loc) · 3.09 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
site_name: DYNAMITE Docs
site_url: https://dmft-evolution.github.io/DYNAMITE/
repo_url: https://github.com/DMFT-evolution/DYNAMITE
repo_name: DMFT-evolution/DYNAMITE
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- content.code.copy
- content.footnote.tooltips
- search.suggest
- search.highlight
logo: assets/logo-dmfe.svg
favicon: assets/icons/icon-dmfe-contrast.svg
palette:
- scheme: slate
primary: blue
accent: indigo
toggle:
icon: material/white-balance-sunny
name: Switch to light mode
- scheme: default
primary: blue
accent: indigo
toggle:
icon: material/weather-night
name: Switch back to dark mode
markdown_extensions:
- admonition
- footnotes
- codehilite
- toc:
permalink: true
- def_list
- md_in_html
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.critic
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.arithmatex:
generic: true
plugins:
- search
- asciinema-player
- exclude:
glob:
- reference/doxygen/**
- reference/api/**
extra:
robots: robots.txt
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://unpkg.com/mermaid@10/dist/mermaid.min.js
- assets/mermaid-init.js
- assets/logo-fade.js
- assets/asciinema-player.min.js
extra_css:
- assets/overrides.css
- assets/asciinema-player.css
nav:
- Home: index.md
- Install: install.md
- Usage: usage.md
- Tutorials:
- First run: tutorials/first-run.md
- Generate grids: tutorials/generate-grids.md
- CPU-only: tutorials/cpu-only.md
- Cluster portable build: tutorials/cluster-portable-build.md
- Parameter sweep: tutorials/parameter-sweep.md
- Reading outputs: tutorials/reading-outputs.md
- Concepts:
- Algorithm: concepts/algorithm.md
- Architecture: concepts/architecture.md
- EOMs and observables: concepts/eoms-and-observables.md
- Interpolation grids: concepts/interpolation-grids.md
- Time integration: concepts/time-integration.md
- Sparsification: concepts/sparsification.md
- Version compatibility: concepts/version-compatibility.md
- How-to:
- Generate new grids: howto/generate-grids.md
- Add new observable: howto/add-new-observable.md
- Add new kernel: howto/add-new-kernel.md
- Add new IO format: howto/add-new-io-format.md
- Reference:
- Overview: reference/index.md
- Cite: reference/cite.md
- Bibliography: reference/bibliography.md
- API: reference/api.md
- Developer:
- Contributors: dev/contributors.md
- Contributing: dev/contributing.md
- Testing: dev/testing.md
- Release: dev/release.md