-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild_conf.json
More file actions
32 lines (32 loc) · 905 Bytes
/
build_conf.json
File metadata and controls
32 lines (32 loc) · 905 Bytes
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
{
"builds": {
"pdf": {
"source_dir": "latex/slides",
"target_dir": "build/pdf",
"command": "pdflatex",
"files": [
"01_getting_started.tex",
"02_grundlagen.tex",
"03_builtins.tex",
"04_modules_packages_pip.tex",
"05_decorators.tex",
"06_comprehensions.tex",
"07_functions_advanced.tex",
"08_process.tex",
"09_web_client.tex",
"10_regex.tex",
"11_smtplib.tex",
"12_curses.tex"
]
},
"html": {
"source_dir": "latex/slides",
"target_dir": "build/html",
"command": "hevea",
"files": [
"01_getting_started.tex",
"02_grundlagen.tex"
]
}
}
}