forked from norc-heal/heal-data-pkg-tool-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
98 lines (95 loc) · 3.75 KB
/
Copy pathmkdocs.yaml
File metadata and controls
98 lines (95 loc) · 3.75 KB
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
#https://www.mkdocs.org/user-guide/configuration/#
site_name: HEAL Data Packaging Tool How-To
site_url: https://norc-heal.github.io/heal-data-pkg-tool-docs
repo_url: https://github.com/norc-heal/heal-data-pkg-tool-docs
nav:
- "": index.md
- About the HEAL Data Packaging Tool:
- about/index.md
- Purpose: about/purpose.md
- The Trackers: about/trackers.md
- Downloading the Tool:
- Windows: about/download/start-win.md
- Mac: about/download/start-mac.md
- Navigating the Tool: about/nav.md
- Data Package:
- The Data Package Tab: datadir/index.md
- Create a New Data Package: datadir/pkgdir.md
- Set Your Working Data Package Directory: datadir/setdir.md
- Update Your Data Package Directory: datadir/update.md
- Prepare Data Package for Submission: datadir/prepare.md
- The Experiment Tracker:
- exptrack/index.md
- Add a New Experiment: exptrack/addexp.md
- Edit an Existing Experiment: exptrack/editexp.md
- View the Experiment Tracker: exptrack/viewexp.md
- Advanced: exptrack/batchexp.md
- The Results Tracker:
- resulttrack/index.md
- Add a New Result: resulttrack/addresult.md
- Edit an Existing Result: resulttrack/editresult.md
- View the Results Tracker: resulttrack/viewresult.md
- Advanced: resulttrack/batchresult.md
- The Resource Tracker:
- resotrack/index.md
- Add a New Resource: resotrack/addresource.md
- Edit an Existing Resource: resotrack/editresource.md
- Check Resources to Add: resotrack/checkresource.md
- View the Resource Tracker: resotrack/viewresource.md
- Advanced: resotrack/batchreso.md
- Data Dictionary:
- datadict/index.md
- Create a Data Dictionary: datadict/create.md
- Validate a Data Dictionary: datadict/validate.md
- View/Edit a Data Dictionary: datadict/view.md
- Schemas:
- schemas/index.md
- Experiment Tracker: schemas/md_experiment_tracker.md
- Resource Tracker: schemas/md_resource_tracker.md
- Results Tracker: schemas/md_results_tracker.md
- Data Dictionary: schemas/md_data_dict.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: assets/heal_logo.png
extra_css:
- stylesheets/extra.css
extra:
homepage: https://github.com/norc-heal
use_directory_urls: true
markdown_extensions:
- admonition
- attr_list
- md_in_html
- toc:
permalink: True
baselevel: 1
- pymdownx.superfences
- pymdownx.extra
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
plugins:
- search
- mkdocs-video:
is_video: True
- external-markdown
# TODO: add footer (this may be included in the custom jinja template?)
# [](https://ctds.uchicago.edu/gen3)[](https://ctds.uchicago.edu/)
# [](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"; } }