-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
86 lines (79 loc) · 2.13 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
82
83
84
85
86
# Project
site_name: "MC2 Center Data Models Explorer"
site_description: >-
Versioned history of the MC2 Center data models.
# Repository
repo_url: https://github.com/mc2-center/data-models
repo_name: data-models
# Navigation
nav:
- Home: index.md
- Data Models:
- Dataset Data Model: model/dataset.md
- Dataset Sharing Plan: model/DataDSP.md
- Education Resource Data Model: model/education.md
- File Data Model: model/file.md
- Grant Data Model: model/grant.md
- Person Data Model: model/person.md
- Publication Data Model: model/publication.md
- Study Data Model: model/study.md
- Tool Data Model: model/tool.md
- Standard Terms:
- All terms: valid_values/all_terms.md
- Terms by model:
- Dataset: valid_values/dataset.md
- Dataset Sharing Plan: valid_values/sharingPlans.md
- Education Resource: valid_values/education.md
- File: valid_values/file.md
- Grant: valid_values/grant.md
- Person: valid_values/person.md
- Publication: valid_values/publication.md
- Tool: valid_values/tool.md
- Contributing to the Data Model: contributing.md
# Theme configuration
theme:
name: material
font:
text: DM Sans
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
toggle:
icon: material/toggle-switch
name: Switch to light mode
logo: assets/cckp-logo.png
icon:
admonition:
note: octicons/tag-16
info: octicons/info-16
features:
- content.code.copy
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- search.highlight
- search.share
- search.suggest
- toc.follow
plugins:
- search
- table-reader:
data_path: "modules"
select_readers:
- read_csv
hooks:
- scripts/hooks.py
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true