diff options
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ #!/bin/bash -pandoc -o lbh.epub lbh.txt --toc --css=epub.css +# strip my docstring style notes, don't touch orignal +cat lbh.txt | sed '/^\"\"\"/,/^\"\"\"/d;' > tmp.txt +# process with pandoc +pandoc -o lbh.epub tmp.txt --toc --css=epub.css ~/./bin/kindlegen lbh.epub +rm tmp.txt |