Module: Metanorma::Compile::CompileOptions
- Included in:
- Metanorma::Compile
- Defined in:
- lib/metanorma/compile/compile_options.rb
Instance Method Summary collapse
- #extract_extensions(options) ⇒ Object
- #extract_options(filename, options) ⇒ Object
- #extract_xml_options(file) ⇒ Object
- #font_install(opt) ⇒ Object
- #get_extensions(options) ⇒ Object
- #require_libraries(options) ⇒ Object
Instance Method Details
#extract_extensions(options) ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/metanorma/compile/compile_options.rb', line 51 def extract_extensions() [:extension_keys] ||= @processor.output_formats.reduce([]) { |memo, (k, _)| memo << k } [:extension_keys].reduce([]) do |memo, e| if @processor.output_formats[e] then memo << e else unsupported_format_error(e) memo end end end |
#extract_options(filename, options) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/metanorma/compile/compile_options.rb', line 20 def (filename, ) content = read_file(filename) o = Metanorma::Input::Asciidoc.new.(content) .merge((content)) [:type] ||= o[:type]&.to_sym t = @registry.alias([:type]) and [:type] = t dir = filename.sub(%r(/[^/]+$), "/") [:relaton] ||= File.join(dir, o[:relaton]) if o[:relaton] if o[:sourcecode] [:sourcecode] ||= File.join(dir, o[:sourcecode]) end [:extension_keys] ||= o[:extensions]&.split(/, */)&.map(&:to_sym) [:extension_keys] = nil if [:extension_keys] == [:all] [:format] ||= :asciidoc [:filename] = filename [:fontlicenseagreement] ||= "no-install-fonts" [:novalid] = o[:novalid] if o[:novalid] end |
#extract_xml_options(file) ⇒ Object
10 11 12 13 14 15 16 17 18 |
# File 'lib/metanorma/compile/compile_options.rb', line 10 def (file) xml = Nokogiri::XML(file, &:huge) if xml.root @registry..each do |k, v| return { type: k } if v == xml.root.name end end {} end |
#font_install(opt) ⇒ Object
63 64 65 66 67 |
# File 'lib/metanorma/compile/compile_options.rb', line 63 def font_install(opt) @fontist_installed or Util::FontistHelper.install_fonts(@processor, opt) @fontist_installed = true end |
#get_extensions(options) ⇒ Object
41 42 43 44 45 46 47 48 49 |
# File 'lib/metanorma/compile/compile_options.rb', line 41 def get_extensions() ext = extract_extensions() !ext.include?(:presentation) && ext.any? do |e| @processor.use_presentation_xml(e) end and ext << :presentation !ext.include?(:rxl) && [:site_generate] and ext << :rxl ext end |
#require_libraries(options) ⇒ Object
6 7 8 |
# File 'lib/metanorma/compile/compile_options.rb', line 6 def require_libraries() &.dig(:require)&.each { |r| require r } end |