-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
81 lines (76 loc) · 2.09 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: DaSCH Service Platform Documentation
nav:
- Overview: index.md
- DSP-APP: "!include ./dsp/dsp-app/mkdocs.yml"
- DSP-API: "!include ./dsp/dsp-api/mkdocs.yml"
- DSP-TOOLS: "!include ./dsp/dsp-tools/mkdocs.yml"
- DSP-INGEST: "!include ./dsp/dsp-ingest/mkdocs.yml"
- DSP-META: "!include ./dsp/dsp-meta/mkdocs.yml"
- Developers:
- Getting Started: developers/getting-started.md
- Basics:
- Introduction: developers/introduction.md
- RDF: developers/rdf.md
- Sipi: developers/sipi.md
- Libraries: developers/libraries.md
- Contribution: developers/contribution.md
plugins:
- git-revision-date-localized
- mike
- monorepo
- include-markdown
- search
- neoteroi.mkdocsoad:
use_pymdownx: true
- mkdocstrings:
handlers:
python: # this config must be identical to the config in the dsp-tools repo
paths: [dsp/dsp-tools/src/dsp_tools/]
options:
members_order: source
show_labels: false
show_signature: false
show_docstring_raises: false
show_root_toc_entry: false
theme:
name: material
custom_dir: overrides
logo: "assets/images/logo_bw.svg"
favicon: "assets/images/logo_bw.svg"
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- search.suggest
- search.highlight
- version
extra_css:
- "assets/style/theme.css"
- dsp/dsp-ingest/docs/css/mkdocsoad-v1.0.2.css
extra:
analytics:
provider: fathom
data_site: BWXVRNXV
version:
provider: mike
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde