Class: Metanorma::UN::Processor
- Inherits:
-
Processor
- Object
- Processor
- Metanorma::UN::Processor
- Defined in:
- lib/metanorma/un/processor.rb
Instance Method Summary collapse
- #fonts_manifest ⇒ Object
-
#initialize ⇒ Processor
constructor
A new instance of Processor.
- #output(isodoc_node, inname, outname, format, options = {}) ⇒ Object
- #output_formats ⇒ Object
- #version ⇒ Object
Constructor Details
#initialize ⇒ Processor
Returns a new instance of Processor.
7 8 9 10 11 |
# File 'lib/metanorma/un/processor.rb', line 7 def initialize @short = :un @input_format = :asciidoc @asciidoctor_backend = :un end |
Instance Method Details
#fonts_manifest ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/metanorma/un/processor.rb', line 21 def fonts_manifest { "Arial" => nil, "Arial Black" => nil, "Courier New" => nil, "Times New Roman" => nil, "STIX Two Math" => nil, "Source Han Sans" => nil, "Source Han Sans Normal" => nil, } end |
#output(isodoc_node, inname, outname, format, options = {}) ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/metanorma/un/processor.rb', line 37 def output(isodoc_node, inname, outname, format, ={}) () case format when :html IsoDoc::UN::HtmlConvert.new().convert(inname, isodoc_node, nil, outname) when :doc IsoDoc::UN::WordConvert.new().convert(inname, isodoc_node, nil, outname) when :pdf IsoDoc::UN::PdfConvert.new().convert(inname, isodoc_node, nil, outname) when :presentation IsoDoc::UN::PresentationXMLConvert.new().convert(inname, isodoc_node, nil, outname) else super end end |
#output_formats ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/metanorma/un/processor.rb', line 13 def output_formats super.merge( html: "html", doc: "doc", pdf: "pdf", ) end |