Class: Metanorma::CollectionRenderer::PdfOptionsNode

Inherits:
Object
  • Object
show all
Defined in:
lib/metanorma/collection_renderer.rb

Instance Method Summary collapse

Constructor Details

#initialize(doctype, options) ⇒ PdfOptionsNode

Returns a new instance of PdfOptionsNode.



102
103
104
105
# File 'lib/metanorma/collection_renderer.rb', line 102

def initialize(doctype, options)
  doc_proc = Metanorma::Registry.instance.find_processor(doctype)
  @font_locations = FontistUtils.fontist_font_locations(doc_proc, options)
end

Instance Method Details

#attr(key) ⇒ Object



107
108
109
110
111
# File 'lib/metanorma/collection_renderer.rb', line 107

def attr(key)
  if key == "mn2pdf-font-manifest-file" && @font_locations
    @font_locations.path
  end
end