-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
167 lines (157 loc) · 6.45 KB
/
mkdocs.yml
File metadata and controls
167 lines (157 loc) · 6.45 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# Project information
site_name: Lambda Feedback Documentation
site_author: Pierre Tharreau, Louis Manestar
site_url: https://lambda-feedback.github.io/user-documentation/
site_description: >-
Architecture, syntax and usage details for an online learning platform
focused on providing rich feedback to the user.
repo_url: https://github.com/lambda-feedback/user-documentation
edit_uri: blob/main/docs/
# Project tree
nav:
- Home:
- "index.md"
- Publications: "publications.md"
- Opportunities: "opportunities.md"
- Terminology: "terminology.md"
- Releases:
- Major releases: "releases/major_releases.md"
- Detailed Releases: "releases/detailed_releases.md"
- Previous releases:
- 2023-24: "releases/relases_2023_24.md"
- Status: "releases/status.md"
- Students:
- "student/index.md"
- Getting Started: "student/getting_started_student.md"
- Answering Questions: "student/answering_questions.md"
- Response Areas: "student/response_areas.md"
- Text Editing: "student/lexdown_student.md"
- Module evaluation questionnaires (MEQ): "student/MEQ.md"
- FAQ: "student/faq.md"
- Teachers:
- "teacher/index.md"
- Guides:
- Getting started: "teacher/guides/gettingstarted.md"
- Editing questions: "teacher/guides/content-sets-questions.md"
- Lexdown content editor: "teacher/guides/lexdown.md"
- Exporting and importing questions: "teacher/guides/question-export-import.md"
- Analytics: "teacher/guides/analytics.md"
- Good practice: "teacher/guides/good-practice.md"
- Guidance: "teacher/guides/guidance.md"
- Module evaluation questionnaires (MEQ): "teacher/guides/MEQ.md"
- FAQ: "teacher/guides/faq.md"
- Reference:
- Content management: "teacher/reference/content_management.md"
- Latex functionality: "teacher/reference/latex_functionality.md"
- PDF generation: "teacher/reference/pdf_generation.md"
- Response Areas:
- "teacher/reference/response_area_components/index.md"
- Text: "teacher/reference/response_area_components/Text.md"
- Essay: "teacher/reference/response_area_components/Essay.md"
- Milkdown: "teacher/reference/response_area_components/Milkdown.md"
- Number: "teacher/reference/response_area_components/Number.md"
- Boolean: "teacher/reference/response_area_components/Boolean.md"
- NumericUnits: "teacher/reference/response_area_components/NumericUnits.md"
- Expression: "teacher/reference/response_area_components/Expression.md"
- Math Single Line: "teacher/reference/response_area_components/Math_Single_Line.md"
- Math Multi Line: "teacher/reference/response_area_components/Math_Multi_Line.md"
- MultipleChoice: "teacher/reference/response_area_components/MultipleChoice.md"
- Likert: "teacher/reference/response_area_components/Likert.md"
- Matrix: "teacher/reference/response_area_components/Matrix.md"
- Table: "teacher/reference/response_area_components/Table.md"
- Code: "teacher/reference/response_area_components/Code.md"
- Evaluation Functions:
- "teacher/reference/evaluation_functions/index.md"
- Advanced:
- "advanced/index.md"
- Response Areas:
- Overview: "advanced/response_areas/overview.md"
- Evaluation Functions:
- Quickstart Guide: "advanced/evaluation_functions/quickstart.md"
- General Specification: "advanced/evaluation_functions/specification.md"
- Feedback: "advanced/evaluation_functions/feedback.md"
- Testing Functions Locally: "advanced/evaluation_functions/local.md"
- Evaluation Function Utils: "advanced/evaluation_functions/module.md"
- Deployed Functions:
- "advanced/evaluation_functions/index.md"
- Alternate Function Languages: "advanced/evaluation_functions/alternate_languages.md"
- Chat functions:
- Quickstart: "advanced/chat_functions/quickstart.md"
- Testing Functions Locally: "advanced/chat_functions/local.md"
- Chat Functions Information: "advanced/chat_functions/info.md"
- Administrators:
- User Access: "advanced/administrators/user_access.md"
- User tags: "advanced/administrators/user_tags.md"
# Configuration
theme:
name: material
logo: assets/logo.png
favicon: assets/favicon.png
icon:
repo: fontawesome/brands/github
edit: fontawesome/solid/pen-to-square
features:
- navigation.indexes
- navigation.instant
- navigation.sections
#- navigation.top
- navigation.tabs
- navigation.tabs.sticky
- content.action.edit
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to light mode
# Extensions
markdown_extensions:
- toc:
permalink: true
- admonition
- def_list
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.arithmatex:
generic: true
- attr_list
- md_in_html
# - meta
- tables
extra_javascript:
- scripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Plugins
plugins:
- search
- git-revision-date-localized:
fallback_to_build_date: true
- macros
- evaldocsloader:
enabled: !ENV [ENABLE_EVALDOCS, true]
functions_announce_endpoint: "https://prod-api.lambdafeedback.com/evaluation-functions/registered"
api_key:
!ENV [
API_KEY,
"WiOS1vMpQyTuGL06ZJxjG1eZd2P0SPvuVzHpr6zjkTIJ33U2t5O5NWaZboWBv8aV",
]
dev_section: ["Advanced", "Evaluation Functions", "Deployed Functions"]
user_section: ["Teachers", "Reference", "Evaluation Functions"]
github_token: !ENV [GITHUB_TOKEN, ""]
# Extra variables, accessible within markdown pages
extra:
urls:
client: https://lambdafeedback.com