forked from ReproNim/reproschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
86 lines (81 loc) · 2.53 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
site_name: ReproSchema documentation
repo_name: "ReproNim/reproschema"
repo_url: "https://github.com/ReproNim/reproschema"
copyright: "CC-BY 4.0"
# This will use Material them
theme:
name: "material"
language: "en"
favicon: img/favicon.png
logo: img/favicon_on_white.png
features:
- content.code.copy
- content.code.annotate
icon:
repo: fontawesome/brands/github
edit: material/pencil
palette:
# Palette toggle for automatic mode
- media: (prefers-color-scheme)
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
# Pages
nav:
- Welcome: "index.md"
- Introduction: "introduction.md"
- Project structure: "project-structure.md"
- Schema: "schema.md"
- User Guide:
- Create a research protocol: "user-guide/create-new-protocol.md"
- Adopt assessments from the library: "user-guide/adopt-assessments.md"
- Create new assessments for a protocol: "user-guide/create-new-assess.md"
- Add a feedback section: "user-guide/setup-feedback.md"
- Finalize the protocol: "user-guide/finalize-protocol.md"
- Toolkit: "user-guide/tools.md"
- Tutorial:
- Intro: "tutorials/using-reproschema.md"
- Create a protocol: "tutorials/create-new-protocol.md"
- Create a new activity: "tutorials/create-new-activity.md"
- Create new items: "tutorials/create-new-items.md"
- Finalize the protocol: "tutorials/finalizing-the-protocol.md"
- Translate a questionnaire: "tutorials/translating-an-activity.md"
- Demographic information : "tutorials/collecting-demographics-information.md"
- Tips to make your life easier: "tutorials/tips-to-make-your-life-easier.md"
- FAQ: "FAQ.md"
- Contributing: "CONTRIBUTING.md"
# list of extension
markdown_extensions:
- abbr
- attr_list
- admonition
- pymdownx.critic
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
- toc:
anchorlink: true
watch:
- includes
plugins:
- search
- tags