metanorma/metanorma-ieee

View on GitHub
lib/relaton/render/general.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "relaton-render"
require_relative "parse"

module Relaton
  module Render
    module Ieee
      class General < ::Relaton::Render::IsoDoc::General
        def config_loc
          YAML.load_file(File.join(File.dirname(__FILE__), "config.yml"))
        end

        def klass_initialize(_options)
          super
          @parseklass = Relaton::Render::Ieee::Parse
        end
      end
    end
  end
end