-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
74 lines (69 loc) · 1.89 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
site_name: MiADE
site_description: A set of tools for extracting formattable data from clinical notes stored in electronic health record systems.
# Repository
repo_name: uclh-criu/miade
repo_url: https://github.com/uclh-criu/miade
# Configuration for the theme
theme:
name: material
logo: assets/miade-logo-small.png
favicon: assets/miade-logo-small.png
palette:
primary: teal
accent: red
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.instant
- navigation.sections
- navigation.expand
- navigation.path
- navigation.indexes
- toc.integrate
- content.code.copy
- content.code.select
# Extensions
markdown_extensions:
- admonition
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
# Pages
nav:
- Home: index.md
- User Guide:
- Quickstart: user-guide/quickstart.md
- Configurations: user-guide/configurations.md
- Cookbook: user-guide/cookbook.md
- API Reference:
- Pipeline Components:
- NoteProcessor: api-reference/noteprocessor.md
- Annotator: api-reference/annotator.md
- ProblemsAnnotator: api-reference/problemsannotator.md
- MedsAllergiesAnnotator: api-reference/medsallergiesannotator.md
- DosageExtractor: api-reference/dosageextractor.md
- Objects:
- Note: api-reference/note.md
- Concept: api-reference/concept.md
- Dosage: api-reference/dosage.md
- MetaAnnotations: api-reference/metaannotations.md
- About:
- Overview: about/overview.md
- Team: about/team.md
- Community: contributing.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true