forked from google/android-fhir
-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yaml
104 lines (97 loc) · 3.31 KB
/
mkdocs.yaml
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
site_name: Android FHIR SDK
site_url: https://google.github.io/android-fhir/
repo_url: https://github.com/google/android-fhir/
edit_uri: blob/master/docs/
copyright: Copyright 2024 The Android FHIR SDK Authors
nav:
- Home: index.md
- Users:
- FHIR Engine Library:
- Introduction: use/FEL/index.md
- Getting Started: use/FEL/Getting-started.md
- Guides:
- use/FEL/Manage-FHIR-resources-locally.md
- use/FEL/Search-FHIR-resources.md
- use/FEL/Sync-data-with-FHIR-server.md
- use/FEL/Privacy-Security.md
- use/FEL/Demo-app.md
- Reference:
- use/FEL/FHIR-search-specification-support.md
- Structured Data Capture Library:
- Introduction: use/SDCL/index.md
- Getting Started: use/SDCL/Getting-Started.md
- Guides:
- use/SDCL/Use-QuestionnaireFragment.md
- use/SDCL/Use-QuestionnaireResponseValidator.md
- use/SDCL/Use-ResourceMapper.md
- use/SDCL/Customize-how-a-Questionnaire-is-displayed.md
- use/SDCL/Reference-external-data.md
- use/SDCL/Author-questionnaires.md
- Demo App: use/SDCL/Demo-app.md
- Reference:
- FHIR specification support: use/SDCL/FHIR-specification-support.md
- Workflow Library:
- Introduction: use/WFL/index.md
- use/WFL/Getting-Started.md
- Guides:
- use/WFL/Generate-A-Care-Plan.md
- use/WFL/Evaluate-a-Measure.md
- use/WFL/Evaluate-a-Library.md
- use/WFL/Compile-and-Execute-CQL.md
- use/extensions.md
- API Doc: use/api.md
- Use Snapshots: use/snapshots.md
- Contributors:
- Prerequisites: contrib/prereqs.md
- Libraries: contrib/libs.md
- Database: contrib/db.md
- Testing: contrib/test.md
- Troubleshooting: contrib/troubleshoot.md
- Code Style: contrib/style.md
- Git Guideline: contrib/git.md
- Codespaces: contrib/codespaces.md
- Documentation: contrib/docs.md
- Roadmap: contrib/roadmap.md
- Community: community.md
- faq.md
# The following settings were originally partially inspired by
# https://github.com/enola-dev/enola/blob/main/mkdocs.yaml
# https://squidfunk.github.io/mkdocs-material/reference/admonitions/
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
theme:
name: material
features:
- content.action.edit
- content.code.copy
- navigation.expand
- navigation.footer
- navigation.instant
- navigation.tracking
- navigation.path
- navigation.top
- search.suggest
- search.share
markdown_extensions:
# https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/
- pymdownx.magiclink
plugins:
- search
- git-revision-date-localized
- minify:
minify_html: true
# https://www.mkdocs.org/user-guide/configuration/#validation
# Nota Bene: There is no "error" level in MkDocs, but the build-docs.bash script
# uses "mkdocs build --strict", which cause MkDocs to abort the build on any warnings.
validation:
nav:
not_found: warn
absolute_links: warn
omitted_files: warn
links:
anchors: warn
not_found: warn
absolute_links: warn
unrecognized_links: warn