-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
build.books.sh
executable file
·85 lines (82 loc) · 2.14 KB
/
build.books.sh
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
#!/usr/bin/env bash
set -e
docker run --rm -v `pwd`:/data uppalabharath/pandoc-latex-cjk:latest --from=gfm+rebase_relative_paths -o learn-go-with-tests.pdf \
-H meta.tex --pdf-engine=xelatex --variable urlcolor=blue --toc --toc-depth=1 \
-B pdf-cover.tex \
gb-readme.md \
why.md \
hello-world.md \
integers.md \
iteration.md \
arrays-and-slices.md \
structs-methods-and-interfaces.md \
pointers-and-errors.md \
maps.md \
dependency-injection.md \
mocking.md \
concurrency.md \
select.md \
reflection.md \
sync.md \
context.md \
roman-numerals.md \
math.md \
reading-files.md \
html-templates.md \
generics.md \
revisiting-arrays-and-slices-with-generics.md \
intro-to-acceptance-tests.md \
scaling-acceptance-tests.md \
working-without-mocks.md \
refactoring-checklist.md \
app-intro.md \
http-server.md \
json.md \
io.md \
command-line.md \
time.md \
websockets.md \
os-exec.md \
error-types.md \
context-aware-reader.md \
http-handlers-revisited.md \
anti-patterns.md
docker run --rm -v `pwd`:/data pandoc/latex:latest --from=gfm+rebase_relative_paths --to=epub --file-scope title.txt -o learn-go-with-tests.epub --pdf-engine=xelatex --toc --toc-depth=1 \
gb-readme.md \
why.md \
hello-world.md \
integers.md \
iteration.md \
arrays-and-slices.md \
structs-methods-and-interfaces.md \
pointers-and-errors.md \
maps.md \
dependency-injection.md \
mocking.md \
concurrency.md \
select.md \
reflection.md \
sync.md \
context.md \
roman-numerals.md \
math.md \
reading-files.md \
html-templates.md \
generics.md \
revisiting-arrays-and-slices-with-generics.md \
intro-to-acceptance-tests.md \
scaling-acceptance-tests.md \
working-without-mocks.md \
refactoring-checklist.md \
app-intro.md \
http-server.md \
json.md \
io.md \
command-line.md \
time.md \
websockets.md \
os-exec.md \
error-types.md \
context-aware-reader.md \
http-handlers-revisited.md \
anti-patterns.md