-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
executable file
·47 lines (43 loc) · 1.08 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
site_name: FHIR Kindling
repo_url: https://github.com/migraf/fhir-kindling
edit_uri: blob/main/docs/
theme:
name: material
logo: 'assets/logo.png'
favicon: 'assets/logo.png'
features:
- navigation.tracking
- navigation.expand
- content.code.copy
palette:
- scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
site_dir: public
nav:
- Home: index.md
- User Guide:
- Connect to a FHIR server: connect.md
- Query a server: query.md
- Add resources: add.md
- Delete resources: delete.md
- Update resources: update.md
- Transfer resources: transfer.md
- Server Benchmarking: benchmark.md
- Data Science: ds.md
- API docs: api.md
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- mkdocstrings
- search