forked from quii/learn-go-with-tests
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.books.sh
executable file
·59 lines (56 loc) · 1.35 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
#!/usr/bin/env bash
set -e
#docker run -v `pwd`:/source jagregory/pandoc -o learn-go-with-tests.pdf -H meta.tex --latex-engine=xelatex --variable urlcolor=blue --toc --toc-depth=1 pdf-cover.md \
# gb-readme.md \
# why.md \
# hello-world.md \
# integers.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 \
# app-intro.md \
# http-server.md \
# json.md \
# io.md \
# command-line.md \
# time.md \
# websockets.md \
# os-exec.md \
# error-types.md \
docker run -v `pwd`:/source jagregory/pandoc -o learn-go-with-tests.epub --latex-engine=xelatex --toc --toc-depth=1 title.txt \
gb-readme.md \
why.md \
hello-world.md \
integers.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 \
app-intro.md \
http-server.md \
json.md \
io.md \
command-line.md \
time.md \
websockets.md \
os-exec.md \
error-types.md