forked from linkml/linkml-model
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
55 lines (55 loc) · 1.55 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
site_name: "LinkML Model"
site_url: "https://linkml.io/linkml-model"
theme:
name: material
analytics:
gtag: G-2SYBSJVZ23
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: teal
accent: amber
toggle:
icon: material/lightbulb
name: Switch to light mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: teal
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
plugins:
- search
- mermaid2
- mike:
alias_type: symlink
canonical_version: latest
extra:
version:
provider: mike
#markdown_extensions:
# - toc:
# permalink: true
docs_dir: docs/source
site_dir: docs/build
nav:
- About: docs/home.md
- Specification:
- Index: docs/specification/index.md
- Preface: docs/specification/00preamble.md
- Introduction: docs/specification/01introduction.md
- Instances: docs/specification/02instances.md
- Schema Datamodel: docs/specification/03schemas.md
- Derived Schemas: docs/specification/04derived-schemas.md
- Instance Validation: docs/specification/05validation.md
- Mapping of Instances: docs/specification/06mapping.md
- Appendix:
- Metamodel Index: docs/index.md
- Profiles:
- MinimalSubset: docs/MinimalSubset.md
- BasicSubset: docs/BasicSubset.md
- SpecificationSubset: docs/SpecificationSubset.md
- RelationalModelProfile: docs/RelationalModelProfile.md
- ObjectOrientedProfile: docs/ObjectOrientedProfile.md
- OwlProfile: docs/OwlProfile.md