Class: Metanorma::Processor
- Inherits:
-
Object
- Object
- Metanorma::Processor
- Defined in:
- lib/metanorma/processor.rb,
lib/metanorma/processor/processor.rb
Instance Attribute Summary collapse
-
#asciidoctor_backend ⇒ Object
readonly
Returns the value of attribute asciidoctor_backend.
-
#input_format ⇒ Object
readonly
Returns the value of attribute input_format.
-
#short ⇒ Object
readonly
Returns the value of attribute short.
Instance Method Summary collapse
- #extract_metanorma_options(file) ⇒ Object
- #extract_options(file) ⇒ Object
-
#initialize ⇒ Processor
constructor
A new instance of Processor.
- #input_to_isodoc(file, filename, options = {}) ⇒ Object
- #options_preprocess(options) ⇒ Object
- #output(isodoc_node, _inname, outname, _format, _options = {}) ⇒ Object
- #output_formats ⇒ Object
-
#use_presentation_xml(ext) ⇒ Object
def input_to_isodoc(file, filename) raise “This is an abstract class!” end.
Constructor Details
#initialize ⇒ Processor
Returns a new instance of Processor.
8 9 10 |
# File 'lib/metanorma/processor/processor.rb', line 8 def initialize raise "This is an abstract class!" end |
Instance Attribute Details
#asciidoctor_backend ⇒ Object (readonly)
Returns the value of attribute asciidoctor_backend.
6 7 8 |
# File 'lib/metanorma/processor/processor.rb', line 6 def asciidoctor_backend @asciidoctor_backend end |
#input_format ⇒ Object (readonly)
Returns the value of attribute input_format.
6 7 8 |
# File 'lib/metanorma/processor/processor.rb', line 6 def input_format @input_format end |
#short ⇒ Object (readonly)
Returns the value of attribute short.
6 7 8 |
# File 'lib/metanorma/processor/processor.rb', line 6 def short @short end |
Instance Method Details
#extract_metanorma_options(file) ⇒ Object
50 51 52 |
# File 'lib/metanorma/processor/processor.rb', line 50 def (file) Metanorma::Input::Asciidoc.new.(file) end |
#extract_options(file) ⇒ Object
45 46 47 48 |
# File 'lib/metanorma/processor/processor.rb', line 45 def (file) Metanorma::Input::Asciidoc.new.(file) .merge(output_formats: output_formats) end |
#input_to_isodoc(file, filename, options = {}) ⇒ Object
20 21 22 23 |
# File 'lib/metanorma/processor/processor.rb', line 20 def input_to_isodoc(file, filename, = {}) Metanorma::Input::Asciidoc.new.process(file, filename, @asciidoctor_backend, ) end |
#options_preprocess(options) ⇒ Object
37 38 39 |
# File 'lib/metanorma/processor/processor.rb', line 37 def () [:output_formats] ||= output_formats end |
#output(isodoc_node, _inname, outname, _format, _options = {}) ⇒ Object
41 42 43 |
# File 'lib/metanorma/processor/processor.rb', line 41 def output(isodoc_node, _inname, outname, _format, = {}) File.open(outname, "w:UTF-8") { |f| f.write(isodoc_node) } end |
#output_formats ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/metanorma/processor/processor.rb', line 12 def output_formats { xml: "xml", presentation: "presentation.xml", rxl: "rxl", } end |
#use_presentation_xml(ext) ⇒ Object
def input_to_isodoc(file, filename)
raise "This is an abstract class!"
end
29 30 31 32 33 34 35 |
# File 'lib/metanorma/processor/processor.rb', line 29 def use_presentation_xml(ext) case ext when :html, :doc, :pdf then true else false end end |