Class: Metanorma::IEEE::Processor
- Inherits:
-
Processor
- Object
- Processor
- Metanorma::IEEE::Processor
- Defined in:
- lib/metanorma/ieee/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.
6 7 8 9 10 |
# File 'lib/metanorma/ieee/processor.rb', line 6 def initialize @short = :ieee @input_format = :asciidoc @asciidoctor_backend = :ieee end |
Instance Method Details
#fonts_manifest ⇒ Object
21 22 23 24 25 26 27 28 29 30 |
# File 'lib/metanorma/ieee/processor.rb', line 21 def fonts_manifest { "Arial" => nil, "Courier New" => nil, "Times New Roman" => nil, "Source Han Sans" => nil, "Source Han Sans Normal" => nil, "STIX Two Math" => nil, } end |
#output(isodoc_node, inname, outname, format, options = {}) ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/metanorma/ieee/processor.rb', line 36 def output(isodoc_node, inname, outname, format, = {}) () case format when :html IsoDoc::IEEE::HtmlConvert.new().convert(inname, isodoc_node, nil, outname) when :doc IsoDoc::IEEE::WordConvert.new().convert(inname, isodoc_node, nil, outname) when :pdf IsoDoc::IEEE::PdfConvert.new().convert(inname, isodoc_node, nil, outname) when :presentation IsoDoc::IEEE::PresentationXMLConvert.new().convert( inname, isodoc_node, nil, outname ) when :ieee IsoDoc::IEEE::IEEEXMLConvert.new() .convert(inname, isodoc_node, nil, outname) else super end end |
#output_formats ⇒ Object
12 13 14 15 16 17 18 19 |
# File 'lib/metanorma/ieee/processor.rb', line 12 def output_formats super.merge( html: "html", doc: "doc", pdf: "pdf", ieee: "ieee.xml", ) end |