-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
88 lines (82 loc) · 2.6 KB
/
mkdocs.yml
File metadata and controls
88 lines (82 loc) · 2.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
site_name: STAM Documentation
repo_url: https://github.com/annotation/stam
repo_name: annotation/stam
docs_dir: mkdocsrc
site_dir: site/specs
theme:
name: material
logo: logo.png
features:
- content.action.edit
- content.code.copy
palette:
# Palette toggle for light mode
- scheme: default
primary: green
accent: cyan
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: green
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- mermaid2
- git-revision-date-localized
markdown_extensions:
- mdx_spanner
- footnotes
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
# make exceptions to highlighting of code:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid_custom
- toc:
permalink: true
nav:
- "Front page": "https://annotation.github.io/stam"
- "Model Specification": "README.md"
- "Source repository": "https://github.com/proycon/stam"
- "Examples": "examples/README.md"
- "STAM Extensions":
- "STAM CSV": "extensions/stam-csv/README.md"
- "STAM Textvalidation": "extensions/stam-textvalidation/README.md"
- "STAM Translate": "extensions/stam-translate/README.md"
- "STAM Transpose": "extensions/stam-transpose/README.md"
- "STAM Query": "extensions/stam-query/README.md"
- "STAM Vocab": "extensions/stam-vocab/README.md"
- "STAM Web Annotations": "extensions/stam-webannotations/README.md"
- "STAM Tools": "tools/README.md"
- "Implementations (sources)":
- "stam-rust": "https://github.com/annotation/stam-rust"
- "stam-tools": "https://github.com/annotation/stam-tools"
- "stam-python": "https://github.com/annotation/stam-rust"
- "stamd": "https://github.com/annotation/stamd"
- "API References":
- "stam-rust": "https://docs.rs/stam"
- "stam-python": "https://stam-python.readthedocs.io"
- "Tutorials":
- "Stand-off Text Annotation for Pythonistas": "https://nbviewer.org/github/annotation/stam-python/blob/master/tutorial.ipynb"