Class: Metanorma::Input::Asciidoc

Inherits:
Base
  • Object
show all
Defined in:
lib/metanorma/input/asciidoc.rb

Constant Summary collapse

ADOC_OPTIONS =
%w(htmlstylesheet htmlcoverpage htmlintropage scripts
 scripts-override scripts-pdf wordstylesheet i18nyaml
 standardstylesheet header wordcoverpage wordintropage
 ulstyle olstyle htmlstylesheet-override bare toclevels
 htmltoclevels doctoclevels sectionsplit base-asset-path
 body-font header-font monospace-font title-font
 align-cross-elements wordstylesheet-override ieee-dtd
 pdf-encrypt pdf-encryption-length pdf-user-password
 pdf-owner-password pdf-allow-copy-content pdf-allow-edit-content
 pdf-allow-assemble-document pdf-allow-edit-annotations
 pdf-allow-print pdf-allow-print-hq pdf-allow-fill-in-forms
 fonts font-license-agreement pdf-allow-access-content
 pdf-encrypt-metadata iso-word-template document-scheme
 localize-number iso-word-bg-strip-color modspec-identifier-base)
.freeze
EMPTY_ADOC_OPTIONS_DEFAULT_TRUE =
%w(data-uri-image suppress-asciimath-dup use-xinclude
source-highlighter).freeze
EMPTY_ADOC_OPTIONS_DEFAULT_FALSE =
%w(hierarchical-assets break-up-urls-in-tables toc-figures
toc-tables toc-recommendations).freeze

Instance Method Summary collapse

Instance Method Details

#attr_name_normalise(name) ⇒ Object



65
66
67
68
# File 'lib/metanorma/input/asciidoc.rb', line 65

def attr_name_normalise(name)
  name.delete("-").sub(/override$/, "_override").sub(/pdf$/, "_pdf")
    .to_sym
end

#empty_attr(attr, name) ⇒ Object



36
37
38
# File 'lib/metanorma/input/asciidoc.rb', line 36

def empty_attr(attr, name)
  attr&.sub(/^#{name}:\s*$/, "#{name}: true")&.sub(/^#{name}:\s+/, "")
end

#extract_metanorma_options(file) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/metanorma/input/asciidoc.rb', line 16

def extract_metanorma_options(file)
  hdr = file.sub(/\n\n.*$/m, "\n")
  /\n:(?:mn-)?(?:document-class|flavor):\s+(?<type>\S[^\n]*)\n/ =~ hdr
  /\n:(?:mn-)?output-extensions:\s+(?<extensions>\S[^\n]*)\n/ =~ hdr
  /\n:(?:mn-)?relaton-output-file:\s+(?<relaton>\S[^\n]*)\n/ =~ hdr
  /\n(?<asciimath>:(?:mn-)?keep-asciimath:[^\n]*)\n/ =~ hdr
  /\n(?<novalid>:novalid:[^\n]*)\n/ =~ hdr
  if defined?(asciimath)
    asciimath =
      !asciimath.nil? && !/keep-asciimath: false/.match?(asciimath)
  end
  asciimath = nil if asciimath == false
  {
    type: defined?(type) ? type&.strip : nil,
    extensions: defined?(extensions) ? extensions&.strip : nil,
    relaton: defined?(relaton) ? relaton&.strip : nil,
    asciimath: asciimath, novalid: !novalid.nil? || nil
  }.compact
end

#extract_options(file) ⇒ Object



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/metanorma/input/asciidoc.rb', line 70

def extract_options(file)
  header = file.sub(/\n\n.*$/m, "\n")
  ret = ADOC_OPTIONS.each_with_object({}) do |w, acc|
    m = /\n:#{w}:\s+([^\n]+)\n/.match(header) or next
    acc[attr_name_normalise(w)] = m[1]&.strip
  end
  ret2 = EMPTY_ADOC_OPTIONS_DEFAULT_TRUE.each_with_object({}) do |w, acc|
    m = /\n:#{w}:([^\n]*)\n/.match(header) || [nil, "true"]
    acc[attr_name_normalise(w)] = (m[1].strip != "false")
  end
  ret3 = EMPTY_ADOC_OPTIONS_DEFAULT_FALSE.each_with_object({}) do |w, acc|
    m = /\n:#{w}:([^\n]*)\n/.match(header) || [nil, "false"]
    acc[attr_name_normalise(w)] = !["false"].include?(m[1].strip)
  end
  ret.merge(ret2).merge(ret3).compact
end

#process(file, filename, type, options = {}) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/metanorma/input/asciidoc.rb', line 6

def process(file, filename, type, options = {})
  require "asciidoctor"
  out_opts = { to_file: false, safe: :safe, backend: type,
               header_footer: true, log: options[:log],
               novalid: options[:novalid],
               attributes: ["nodoc", "stem", "docfile=#{filename}",
                            "output_dir=#{options[:output_dir]}"] }
  ::Asciidoctor.convert(file, out_opts)
end