Sha256: 4af1bbfe824a8b5742075f26cdb2e0170163a80ae534db22ac31860fef0b4639
Contents?: true
Size: 590 Bytes
Versions: 33
Compression:
Stored size: 590 Bytes
Contents
require_relative "base_convert" require "isodoc" module IsoDoc module Iso # A {Converter} implementation that generates HTML output, and a document # schema encapsulation of the document for validation # class PdfConvert < IsoDoc::XslfoPdfConvert def initialize(options) @libdir = File.dirname(__FILE__) super end def pdf_stylesheet(docxml) case @doctype when "amendment", "technical-corrigendum" then "iso.amendment.xsl" else "iso.international-standard.xsl" end end end end end
Version data entries
33 entries across 33 versions & 1 rubygems