Sha256: a06d62363b12a1cdace59595e0e1ee0bae7f09161ec668ec72b03714c8284caf
Contents?: true
Size: 1.43 KB
Versions: 2
Compression:
Stored size: 1.43 KB
Contents
require 'kramdown' module Bookmaker module Parser class PDF < Base def content raw = [] entries.keys.each do |chapter| title = (chapter.empty?) ? "Untitled" : chapter.split('_')[1] raw << "\\Chapter{#{title.gsub('-',' ')}}\n\n" entries[chapter].each do |section| s = read_content(section)[0] raw << "#{s}\n\n* * *" end end raw end def parse puts "-- Exporting PDF" locals = config.merge({ :contents => parse_layout(content) }) locals['copyright'].gsub!("(C)", "\\copyright{}") output = render_template(root_dir.join("templates/pdf/layout.erb"), locals) File.open(root_dir.join(tex_file), 'w').write(output) spawn_command ["xelatex", tex_file.to_s,] spawn_command ["xelatex", tex_file.to_s,] spawn_command ["makeindex #{name}.idx"] # spawn_command ["makeglossaries #{name}.glo"] spawn_command ["xelatex", tex_file.to_s,] spawn_command ["rm *.glo *.idx *.log *.out *.toc *aux *ilg *ind *ist"] spawn_command ["mv #{name}.pdf output/#{name}.pdf"] true rescue Exception p $!, $@ false end def parse_layout(text) text = text.join("\n\n") text.gsub!('* * *', "\n\n\\pbreak{}\n\n") end def tex_file root_dir.join("output/#{name}.tex") end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bookmaker-0.5.0 | lib/bookmaker/parser/pdf.rb |
bookmaker-0.4.0 | lib/bookmaker/parser/pdf.rb |