-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse_data.example.json
More file actions
66 lines (66 loc) · 1.43 KB
/
Copy pathcourse_data.example.json
File metadata and controls
66 lines (66 loc) · 1.43 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
{
"title": "示例课程",
"en_title": "Sample Course",
"category": "专业选修-应用基础",
"credits": 4,
"location": "紫金港",
"course_number": "CS0000M",
"recommended_semester": "大二春夏",
"notes": [
"这里可以填写普通 note;整个 notes 字段可以省略",
{
"type": "warning",
"title": "这里可以填写重要警告"
}
],
"description": "摘自教务网:\n\n> 这里填写课程简介。description 支持直接书写 Markdown。",
"teachers": [
{
"term": "25春夏",
"items": [
"教师甲",
"教师乙"
]
}
],
"textbooks": [
"教材名称;没有教材时也可以直接填写字符串“无教材”"
],
"grading": [
{
"term": "25春夏,教师甲班",
"items": [
"作业 20%",
{
"text": "实验 30%",
"items": [
"实验一 10%",
"实验二 20%"
]
},
"期末考试 50%"
]
}
],
"resources": {
"links": [
{
"title": "课程网站",
"url": "https://example.com/course",
"description": "课程资料与通知"
},
"也可以直接写一条 Markdown 文本"
],
"exams": [
{
"term": "25春夏",
"items": [
{
"title": "期末回忆卷",
"url": "https://example.com/exam"
}
]
}
]
}
}