forked from HEAL/platform-documentation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yaml
87 lines (83 loc) · 3.05 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
#https://www.mkdocs.org/user-guide/configuration/#
site_name: HEAL Platform Documentation
site_url: https://heal-docs-dev.io
repo_url:
nav:
- Home: index.md
- Return to Platform: https://healdata.org/
- Logging In: logging-in.md
- Study Registration:
- study-registration/index.md
- study-registration/requesting-access.md
- study-registration/registering-your-study.md
- Study-Level Metadata Submission (CEDAR Form):
- slmd_submission.md
- cedar-getting-started.md
- Variable-level Metadata Submission:
- vlmd/index.md
- Request Access to Submit VLMD: vlmd/vlmd_request_access.md
- vlmd/vlmd_healdata_utils.md
- vlmd/vlmd_submission.md
- vlmd/vlmd_submit_CDE.md
- Workspace User Guide:
- workspaces/index.md
- workspaces/heal_workspace_registration.md
- workspaces/heal_workspaces.md
- Data and Repositories:
- Types of Hosted Data: hosted_data_types.md
- Data Management and Repositories: data_mgmt_and_repos.md
- Reporting Repository Selection and Data Availability: reporting-repo.md
- HEAL Platform Features:
- Discovery Page: platform_discovery_page.md
- Access check/request: platform_request_access.md
- Workspaces: platform_workspaces.md
- Example Analysis Page: platform_example_analyses.md
- Profile Page: platform_profile_page.md
- Data File Downloads: downloading_files.md
- Tutorial Videos: platform_tutorial_videos.md
- FAQs: faqs.md
- Contact: contact.md
theme:
name: material
palette:
scheme: heal_platform
font:
text: Montserrat
logo: assets/HEAL_Initiative_White-cropped.svg
features:
- navigation.indexes
# Disable for now, as it causes problems with links to sections in Safari
# https://github.com/squidfunk/mkdocs-material/issues/3797
# - navigation.instant
- navigation.indexes
#- navigation.tabs
#- navigation.tabs.sticky
- navigation.tracking
#- navigation.sections
#- toc.integrate
favicon: img/heal_logo.png
extra_css:
- stylesheets/extra.css
extra:
homepage: https://healdata.org
use_directory_urls: true
markdown_extensions:
- admonition
- attr_list
- md_in_html
- toc:
permalink: True
baselevel: 1
- pymdownx.superfences
- pymdownx.details
plugins:
- search
- redirects:
redirect_maps:
'vlmd_submission.md': 'vlmd/index.md'
- mkdocs-video:
is_video: True
# TODO: add footer (this may be included in the custom jinja template?)
# [![](img/gen3.png)](https://ctds.uchicago.edu/gen3)[![](img/createdby.png)](https://ctds.uchicago.edu/)
# [![image alt text](image URL link)](anchor link)
# function readMore() { var dots = document.getElementById("dots"); var moreText = document.getElementById("more"); var btnText = document.getElementById("read-more-btn"); var btnText = document.getElementById("read-more-explorer"); if (dots.style.display === "none") { dots.style.display = "inline"; btnText.innerHTML = "Read more"; moreText.style.display = "none"; } else { dots.style.display = "none"; btnText.innerHTML = "Read less"; moreText.style.display = "inline"; } }