-
Notifications
You must be signed in to change notification settings - Fork 39
/
site.json
84 lines (84 loc) · 2.28 KB
/
site.json
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
{
"baseUrl": "/website",
"titlePrefix": "CS2103/T",
"style": {
"codeTheme": "light",
"codeLineNumbers": true
},
"timeZone": "Asia/Singapore",
"disableHtmlBeautify": true,
"ignore": [
"_site/*",
".idea/*",
".gitignore",
"README.md",
"schedule/admin/*",
"*.md",
"diagrams/*",
"book/diagrams/*",
".git/*"
],
"pages": [
{"src": "index.md",
"searchable": "no"},
{"glob": "admin/*.md"},
{"glob": "schedule/index.md",
"searchable": "no"},
{"glob": "schedule/timeline.md",
"searchable": "no"},
{"glob": "schedule/**/admin.md",
"searchable": "no"},
{"glob": "schedule/**/index.md",
"searchable": "no"},
{"glob": "schedule/**/project.md",
"searchable": "no"},
{"glob": "schedule/**/topics.md",
"searchable": "no"},
{"glob": "schedule/**/tutorial.md",
"searchable": "no"},
{"glob": "coding-standards/**/*.mbd"},
{"glob": "book/about/acknowledgements.md"},
{"glob": "se-book-adapted/index.md"},
{"glob": "se-book-adapted/chapters/*.md"},
{"glob": "se-book-adapted/chapters-printable/*.md",
"searchable": "no"
},
{"glob": "se-book-adapted/common/*.md"},
{"glob": "se-book-adapted/projectDuke/*.md"},
{"glob": "book/combined/exercises.md"},
{"src": "se-book-adapted/print.md",
"searchable": "no"
},
{"glob": "book/**/index.md",
"searchable": "no"
},
{"glob": "git-trail/*.md",
"searchable": "no"
}
],
"pagesExclude": ["**/*-fragment.md", "book/_site/**/*.*"],
"intrasiteLinkValidation": {
"enabled": false
},
"enableSearch": true,
"headingIndexingLevel": 5,
"plugins": ["filterTags", "algolia", "codeBlockCopyButtons", "codeBlockWrapButtons", "dataTable", "mermaid"],
"pluginsContext": {
"filterTags" : {
"tags": ["m--cs2103"]
},
"algolia": {
"apiKey": "772d7386c7a785f7a60fec5a096311ef",
"appId": "3DU4XTBX4T",
"indexName": "nus-tic2002-2020a",
"searchParameters": {
"facetFilters": [["site:nus-cs2103-ay2223s1.github.io"], ["tags:admin", "tags:se-book-adapted", "tags:schedule"]]
}
}
},
"deploy": {
"message": "Site Update.",
"repo": "https://github.com/nus-cs2103-AY2223S1/website.git",
"branch": "gh-pages"
}
}