Sha256: d26cf9f404668f82c0f00308edb7d44f64947d8c59480d0546bb814f11d18808

Contents?: true

Size: 1.05 KB

Versions: 2

Compression:

Stored size: 1.05 KB

Contents

require_relative "html_function/comments.rb"
require_relative "html_function/footnotes.rb"
require_relative "html_function/html.rb"
require "metanorma"

module IsoDoc
  class PdfConvert < ::IsoDoc::Convert

    include HtmlFunction::Comments
    include HtmlFunction::Footnotes
    include HtmlFunction::Html

    def initialize(options)
      @standardstylesheet = nil
      super
      @scripts = @scripts_pdf if @scripts_pdf
      @tmpimagedir = "_pdfimages"
      @maxwidth = 500
      @maxheight = 800
    end

    def convert(filename, file = nil, debug = false)
      file = File.read(filename, encoding: "utf-8") if file.nil?
      @openmathdelim, @closemathdelim = extract_delims(file)
      docxml, outname_html, dir = convert_init(file, filename, debug)
      result = convert1(docxml, filename, dir)
      return result if debug
      postprocess(result, filename, dir)
      system "rm -fr #{dir}"
      ::Metanorma::Output::Pdf.new.convert(filename + ".html", outname_html + ".pdf")
      system "rm -r #{filename + '.html'} #{@tmpimagedir}"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
isodoc-0.9.0 lib/isodoc/pdf_convert.rb
isodoc-0.8.13 lib/isodoc/pdf_convert.rb