-
Notifications
You must be signed in to change notification settings - Fork 24
/
tohtml.sh
executable file
·58 lines (55 loc) · 1.7 KB
/
tohtml.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
#!/bin/bash
pandoc +RTS -K512m -RTS init.org \
--to html \
--output init.html \
--email-obfuscation none \
--self-contained \
--standalone \
--section-divs \
--table-of-contents \
--toc-depth 3 \
--variable toc_float=1 \
--variable toc_selectors=h1,h2,h3 \
--variable toc_collapsed=1 \
--variable toc_smooth_scroll=1 \
--variable toc_print=1 \
--template template.html \
--include-in-header include.html \
--highlight-style tango \
--variable 'theme:bootstrap'
pandoc +RTS -K512m -RTS UsefulPrograms.org \
--to html \
--output UsefulPrograms.html \
--email-obfuscation none \
--self-contained \
--standalone \
--section-divs \
--table-of-contents \
--toc-depth 3 \
--variable toc_float=1 \
--variable toc_selectors=h1,h2,h3 \
--variable toc_collapsed=1 \
--variable toc_smooth_scroll=1 \
--variable toc_print=1 \
--template template.html \
--include-in-header include.html \
--highlight-style tango \
--variable 'theme:bootstrap'
pandoc +RTS -K512m -RTS README.md \
--to html \
--output index.html \
--email-obfuscation none \
--self-contained \
--standalone \
--section-divs \
--table-of-contents \
--toc-depth 3 \
--variable toc_float=1 \
--variable toc_selectors=h1,h2,h3 \
--variable toc_collapsed=1 \
--variable toc_smooth_scroll=1 \
--variable toc_print=1 \
--template template.html \
--include-in-header include.html \
--highlight-style tango \
--variable 'theme:bootstrap'