-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathmkdocs.yml
More file actions
62 lines (62 loc) · 1.73 KB
/
mkdocs.yml
File metadata and controls
62 lines (62 loc) · 1.73 KB
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
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:
version: 10.9.0
- mike:
alias_type: symlink
canonical_version: latest
extra:
version:
provider: mike
markdown_extensions:
- admonition
- tables
- pymdownx.magiclink
# - toc:
# permalink: true
extra_javascript:
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
- javascripts/tablesort.js
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