Class: Metanorma::Csand::Processor

Inherits:
Processor
  • Object
show all
Defined in:
lib/metanorma/csand/processor.rb

Instance Method Summary collapse

Constructor Details

#initializeProcessor

Returns a new instance of Processor.



7
8
9
10
11
# File 'lib/metanorma/csand/processor.rb', line 7

def initialize
  @short = :csand
  @input_format = :asciidoc
  @asciidoctor_backend = :csand
end

Instance Method Details

#input_to_isodoc(file) ⇒ Object



23
24
25
# File 'lib/metanorma/csand/processor.rb', line 23

def input_to_isodoc(file)
  Metanorma::Input::Asciidoc.new.process(file, @asciidoctor_backend)
end

#output(isodoc_node, outname, format, options = {}) ⇒ Object



27
28
29
30
31
32
33
34
# File 'lib/metanorma/csand/processor.rb', line 27

def output(isodoc_node, outname, format, options={})
  case format
  when :html
    IsoDoc::Csand::HtmlConvert.new(options).convert(outname, isodoc_node)
  else
    super
  end
end

#output_formatsObject



13
14
15
16
17
# File 'lib/metanorma/csand/processor.rb', line 13

def output_formats
  super.merge(
    html: "html"
  )
end

#versionObject



19
20
21
# File 'lib/metanorma/csand/processor.rb', line 19

def version
  "Asciidoctor::Csand #{Asciidoctor::Csand::VERSION}"
end