-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
86 lines (78 loc) · 3.24 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
75
76
77
78
79
80
81
82
83
84
85
86
# This yaml determines the theme and settings used by MkDocs to publish documentation
# go gh-pages.
#
# The CI pipeline will invoke mkdocs to render HTML from the markdown and push those
# files to the branch gh-pages.
#
# The GitHub repo must be configured with the gh-pages branch (root dir) as the source.
# MkDocs is different from the default jekyll that is available out of the box with
# GitHub, but it has way better nav features.
#
# Only the latest version of the documentation is published.
# There is mike tool that supports versioning but this adds more complexity than
# we need at this time.
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/
site_name: "nlp-insights"
repo_url: "https://github.com/ntl-ibm/nlp-insights"
edit_uri: ./edit/main/docs
# There are a couple of supported themes available, this one looks the
# best with our content.
# It does not have the TOC on the right, the way that Material does, and this
# allows more columns to be displayed for tables and source code.
# The bad news is the the NAV bar on the left only supports two levels of
# nesting. For now that's OK.
theme:
name: readthedocs
# This is what the NAV bar on the left comes from.
# As mentioned before, readthedocs supports only two levels of nesting.
nav:
- "Home": "./index.md"
- "User Guide":
- "Start service locally" : "./examples/setup/start_nlp_insights.md"
- "HTTP Endpoints": "./user/http_endpoints.md"
- "Kubernetes" : "./user/kubernetes.md"
- "ACD Examples":
- "Overview": "./examples/acd/acd_tutorial.md"
- "Configuration" : "./examples/acd/configure_acd.md"
- "Derive New Resources": "./examples/acd/derive_new_resources.md"
- "Enrich Resources": "./examples/acd/enrich.md"
- "Context Awareness" : "./examples/acd/context_awareness.md"
- "Adverse Event" : "./examples/acd/adverse_event.md"
- "QuickUMLS Examples":
- "Overview": "./examples/quickumls/quickumls_tutorial.md"
- "Configuration" : "./examples/quickumls/configure_quickumls.md"
- "Derive New Resources": "./examples/quickumls/derive_new_resources.md"
- "Enrich Resources": "./examples/quickumls/enrich.md"
- "Integration":
- "FHIR Server Integration" : "examples/fhir_integration/fhir_integration_tutorial.md"
- "Developer Guide":
- "Contributing" : "./developer/CONTRIBUTING.md"
- "Gradle Tasks" : "./developer/gradle_tasks.md"
- "Continuous Integration" : "./developer/CI.md"
- "Unit Tests" : "./developer/Unit_Tests.md"
- "Run service without docker" : "developer/run_service_no_docker.md"
plugins:
- search:
separator: '[\s\-\.]+'
markdown_extensions:
- admonition:
- codehilite:
- extra:
- pymdownx.magiclink:
- sane_lists:
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.snippets
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_png
options:
attributes:
align: "absmiddle"
height: "20px"
width: "20px"
extra_css:
- css/extra.css
copyright: 'Copyright © 2022 IBM Watson Health<br>'