-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
69 lines (63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
site_name: LDIMBenchmark
repo_url: https://github.com/TUMT2022/LDIMBench.git
theme:
name: material
icon:
logo: fontawesome/solid/gauge-high
watch:
- docs/
- src/
nav:
- Index: index.md
- Story:
- story/index.md
- Testing: story/testing.ipynb
- Design:
- design/index.md
- Dataset: design/datasets.md
- File Level API: design/file-level-interface.md
- Programming Interface: design/programming-interface.md
- Guides:
- Own Dataset: user-guides/run-on-your-dataset.ipynb
- user-guides/run-your-method.ipynb
- user-guides/run-complexity-analysis.ipynb
- user-guides/run-sensitivity-analysis.ipynb
- user-guides/docker.md
- Roadmap: roadmap.md
- Code Reference: reference/
plugins:
- search
- mkdocs-jupyter:
# execute: True
allow_errors: false
kernel_name: python3
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- autorefs
- mkdocstrings
- git-revision-date-localized:
enable_creation_date: true
exclude:
- reference/*
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- abbr
- attr_list
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
extra_css:
- _extra/jupyter.css
extra_javascript:
- _extra/jupyter.js