Sha256: af62f95ad5c9a9ecceea8cfa6d9b231bcb847a80d1244e2a591ae7fb17f1bc7d
Contents?: true
Size: 567 Bytes
Versions: 47
Compression:
Stored size: 567 Bytes
Contents
require "isodoc" module IsoDoc module IHO # A {Converter} implementation that generates PDF 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 = docxml&.at(ns("//bibdata/ext/doctype"))&.text when "standard" then "iho.standard.xsl" else "iho.specification.xsl" end end end end end
Version data entries
47 entries across 47 versions & 2 rubygems