Class: Metanorma::Generic::Processor

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

Instance Method Summary collapse

Constructor Details

#initializeProcessor

Returns a new instance of Processor.



10
11
12
13
14
# File 'lib/metanorma/generic/processor.rb', line 10

def initialize
  @short = configuration&.metanorma_name&.to_sym || :generic
  @input_format = :asciidoc
  @asciidoctor_backend = configuration&.metanorma_name&.to_sym || :generic
end

Instance Method Details

#configurationObject



6
7
8
# File 'lib/metanorma/generic/processor.rb', line 6

def configuration
  Metanorma::Generic.configuration
end

#extract_options(file) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/metanorma/generic/processor.rb', line 28

def extract_options(file)
  head = file.sub(/\n\n.*$/m, "\n")
  /\n:htmlstylesheet: (?<htmlstylesheet>[^\n]+)\n/ =~ head
  /\n:htmlcoverpage: (?<htmlcoverpage>[^\n]+)\n/ =~ head
  /\n:htmlintropage: (?<htmlintropage>[^\n]+)\n/ =~ head
  /\n:scripts: (?<scripts>[^\n]+)\n/ =~ head
  /\n:wordstylesheet: (?<wordstylesheet>[^\n]+)\n/ =~ head
  /\n:standardstylesheet: (?<standardstylesheet>[^\n]+)\n/ =~ head
  /\n:header: (?<header>[^\n]+)\n/ =~ head
  /\n:wordcoverpage: (?<wordcoverpage>[^\n]+)\n/ =~ head
  /\n:wordintropage: (?<wordintropage>[^\n]+)\n/ =~ head
  /\n:ulstyle: (?<ulstyle>[^\n]+)\n/ =~ head
  /\n:olstyle: (?<olstyle>[^\n]+)\n/ =~ head
  new_options = {
    htmlstylesheet: defined?(htmlstylesheet) ? htmlstylesheet : nil,
    htmlcoverpage: defined?(htmlcoverpage) ? htmlcoverpage : nil,
    htmlintropage: defined?(htmlintropage) ? htmlintropage : nil,
    scripts: defined?(scripts) ? scripts : nil,
    wordstylesheet: defined?(wordstylesheet) ? wordstylesheet : nil,
    standardstylesheet: defined?(standardstylesheet) ? standardstylesheet : nil,
    header: defined?(header) ? header : nil,
    wordcoverpage: defined?(wordcoverpage) ? wordcoverpage : nil,
    wordintropage: defined?(wordintropage) ? wordintropage : nil,
    ulstyle: defined?(ulstyle) ? ulstyle : nil,
    olstyle: defined?(olstyle) ? olstyle : nil,
  }.reject { |_, val| val.nil? }
  super.merge(new_options)
end

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



57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/metanorma/generic/processor.rb', line 57

def output(isodoc_node, inname, outname, format, options={})
  case format
  when :html
    IsoDoc::Generic::HtmlConvert.new(options).convert(inname, isodoc_node, nil, outname)
  when :doc
    IsoDoc::Generic::WordConvert.new(options).convert(inname, isodoc_node, nil, outname)
  when :pdf
    IsoDoc::Generic::PdfConvert.new(options).convert(inname, isodoc_node, nil, outname)
  when :presentation
    IsoDoc::Generic::PresentationXMLConvert.new(options).convert(inname, isodoc_node, nil, outname)
  else
    super
  end
end

#output_formatsObject



16
17
18
19
20
21
22
# File 'lib/metanorma/generic/processor.rb', line 16

def output_formats
  super.merge(
    html: "html",
    doc: "doc",
    pdf: "pdf"
  )
end

#versionObject



24
25
26
# File 'lib/metanorma/generic/processor.rb', line 24

def version
  "Metanorma::Generic #{Metanorma::Generic::VERSION}"
end