-
Notifications
You must be signed in to change notification settings - Fork 59
/
mkdocs.yml
executable file
·81 lines (81 loc) · 2.02 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
site_name: DAPHNE
docs_dir: doc
site_dir: doc_build
theme:
name: material
logo: assets/logo_small.png
favicon: assets/logo_small.png
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- scheme: default
primary: custom
accent: custom
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: pink
accent: pink
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- content.code.copy
- navigation.tabs
- navigation.tabs.sticky
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.striphtml
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
repo_url: https://github.com/daphne-eu/daphne
repo_name: daphne-eu/daphne
nav:
- 'Home':
- README.md
- GettingStarted.md
- 'Users':
- RunningDaphneLocally.md
- 'Configuration': Config.md
- 'DaphneDSL':
- DaphneDSL/LanguageRef.md
- DaphneDSL/Builtins.md
- DaphneDSL/Imports.md
- 'DaphneLib':
- DaphneLib/Overview.md
- DaphneLib/APIRef.md
- DaphneLib/Numpy2DaphneLib.md
- FileMetaDataFormat.md
- DistributedRuntime.md
- SchedulingOptions.md
- 'Tutorials':
- tutorial/sqlTutorial.md
- FPGAconfiguration.md
- MPI-Usage.md
- Profiling.md
- 'Developers':
- development/Contributing.md
- development/BuildingDaphne.md
- Deploy.md
- ReleaseScripts.md
- BinaryFormat.md
- development/Logging.md
- development/ExtendingDistributedRuntime.md
- development/ExtendingSchedulingKnobs.md
- development/HandlingPRs.md
- development/ImplementBuiltinKernel.md
- development/Profiling.md
- development/WriteDocs.md
- development/Testing.md