-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
44 lines (44 loc) · 1.11 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
site_name: "LinkML-Map"
theme:
# name: material
name: windmill
features:
- content.tabs.link
plugins:
- search
- mermaid2
- mkdocstrings:
handlers:
python:
options:
show_source: true
show_root_toc_entry: false
show_category_heading: false
toc_depth: 1
- autorefs
- mknotebooks:
execute: false
markdown_extensions:
- admonition
- codehilite
- pymdownx.superfences
nav:
- Index: index.md
- Examples:
Tutorial: examples/Tutorial.ipynb
Compilation to SQL: examples/Tutorial-SQLCompiler.ipynb
Metamodel Mapping: examples/MetamodelMapping.ipynb
- Specification:
Data Model: schema/datamodel.md
Compliance Suite: specification/compliance.md
- API:
- Session: api/session.md
- Transformer: api/transformer.md
- Compiler: api/compiler.md
- Importer: api/importer.md
- Inference: api/inference.md
- Functions: api/functions.md
- Subsetter: api/subsetter.md
- FAQ: faq.md
site_url: https://linkml.github.io/linkml-map/
repo_url: https://github.com/linkml/linkml-map/