Sha256: 40f8c46f60301da140b07121ad602319060437ac47f3bc731e5a30ce275c070e

Contents?: true

Size: 1.66 KB

Versions: 3

Compression:

Stored size: 1.66 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]
          title = 'Untitled' if title.nil?
          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)
        puts "    - Pass 1"
        spawn_command ["xelatex", tex_file.to_s,]
        puts "    - Pass 2"
        spawn_command ["xelatex", tex_file.to_s,]
        if config['is_final'].to_i == 0
          puts "    - Pass 3 - Indexing"
          spawn_command ["makeindex #{name}.idx"]
          # spawn_command ["makeglossaries #{name}.glo"]
          spawn_command ["xelatex", tex_file.to_s,]
          spawn_command ["rm *ilg *ind "]
        end
        
        spawn_command ["rm *.glo *.idx *.log *.out *.toc *aux *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

3 entries across 3 versions & 1 rubygems

Version Path
bookmaker-0.7.0.pre9 lib/bookmaker/parser/pdf.rb
bookmaker-0.7.0.pre5 lib/bookmaker/parser/pdf.rb
bookmaker-0.7.0.pre4 lib/bookmaker/parser/pdf.rb