-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcourse-setup.js
27 lines (23 loc) · 899 Bytes
/
course-setup.js
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
/*
* Course Handout Configuration
*
* Customize me!
*/
HANDOUT_CLASS = '6.HANDX — Handouts + Exercises';
HANDOUT_SEMESTER = 'IAP 2000';
HANDOUT_AUTHORS = 'Copyright Alice and Bob, all imaginary rights reserved.';
HANDOUT_DEPARTMENT = 'MIT EECS';
HANDOUT_HOME = 'http://example.com/6.HANDX/www/ia00/';
HANDOUT_EXERCISES = [ 'reading-exercises' ];
// optional: handx server for server-checked exercises
// HANDOUT_HANDX = 'https://example.com/handx/ia00/';
// optional: location for videos
// HANDOUT_VIDEO = 'https://example.com/6.HANDX/video/';
// optional: add archived site footer
// HANDOUT_ARCHIVED = 'Archived IAP 2000';
// optional: configuration for slides
// HANDOUT_SLIDE_OPTIONS = { ratio: '16:9' };
// optional: course-wide JavaScript hooks
// HANDOUT_WILL_RENDER = function(converter) { ... };
// HANDOUT_DID_RENDER = function() { ... };
// HANDOUT_READY = function() { ... };