Sha256: d19f3f792ee05df018831847f5c2ffbfbe3b0c38fe9677c28bc6628e2957329f

Contents?: true

Size: 965 Bytes

Versions: 2

Compression:

Stored size: 965 Bytes

Contents

# Registry of all Metanorma types and entry points
#

module Metanorma
  class Processor

    attr_reader :short
    attr_reader :input_format
    attr_reader :asciidoctor_backend

    def initialize
      raise "This is an abstract class!"
    end

    def output_formats
      {
        xml: "xml",
        presentation: "presentation.xml",
        rxl: "rxl"
      }
    end

    def input_to_isodoc(file, filename)
      raise "This is an abstract class!"
    end

    def use_presentation_xml(ext)
      case ext
      when :html, :doc, :pdf then true
      else
        false
      end
    end

    def output(isodoc_node, inname, outname, format, options={})
      File.open(outname, "w:UTF-8") { |f| f.write(isodoc_node) }
    end

    def extract_options(file)
      Metanorma::Input::Asciidoc.new.extract_options(file)
    end

    def extract_metanorma_options(file)
      Metanorma::Input::Asciidoc.new.extract_metanorma_options(file)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
metanorma-1.1.1 lib/metanorma/processor.rb
metanorma-1.1.0 lib/metanorma/processor.rb