-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
61 lines (59 loc) · 1.73 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
site_name: Simplan Framework
repo_url: https://github.com/simplanio/simplan-framework
edit_uri: edit/main/docs/
theme: # readthedocs
features:
- content.code.annotate
- content.code.copy
- content.action.edit
- content.action.view
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
name: material
logo: img/SimplanLogo.png
favicon: img/favicon-96x96.png
icon:
repo: fontawesome/brands/github
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: green
toggle:
icon: material/weather-night
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: light blue
toggle:
icon: material/weather-sunny
name: Switch to light mode
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- 'Overview': index.md
- 'Getting Started': GettingStarted.md
- 'Contribution Guide': ContributionGuide.md
- 'Simplan Implementation':
- 'Data Processing':
- Overview: implementations/dataprocessing/data-processing.md
- Spark: implementations/dataprocessing/spark.md
- Flink: implementations/dataprocessing/flink.md
- Presto: implementations/dataprocessing/presto.md
- Orchestration:
- Overview: implementations/orchestration/orchestration.md
- Console: implementations/console.md
- Simplan Logging:
- 'Introduction': 'logging/Simplan Logging.md'
- 'Logging Fields': 'logging/Simplan Fields.md'