+ ‘#printable.rb#’

This commit is contained in:
nik gaffney 2015-05-27 10:19:10 +02:00
parent f315cdeb9d
commit 63f9e4b6b1

22
#printable.rb# Normal file
View file

@ -0,0 +1,22 @@
#!/usr/local/bin/ruby
#
# dokuwiki -> pdf conversion for futurist fieldguide
repo="/home/nik/pandoc/futurist-fieldguide/"
doku="/var/www/libarynth/dokuwiki/data/pages/futurist_fieldguide/"
user="www-data"
# Dir['*.txt']
file=ARGV[0] # dokuwiki pagenme as argument
# parse dokuwiki -> html
`php /var/www/libarynth/dokuwiki/bin/dokucli.php < #{doku}/#{file}.txt > /tmp/#{file}.html`
# convert html -> pdf with pandoc
`pandoc /tmp/#{file}.html --self-contained
`pandoc /tmp/#{file}.html -S --template=#{repo}/pandoc/templates/fieldguide.tex --include-in-header=#{repo}/pandoc/header.tex --latex-engine=xelatex -o #{repo}/print/#{file}.pdf`
# merge single pdfs with 'assemble.rb'