metanorma 1.5.4 → 1.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/metanorma/collection_fileprocess.rb +1 -4
- data/lib/metanorma/compile.rb +8 -6
- data/lib/metanorma/compile_options.rb +1 -1
- data/lib/metanorma/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b89c521393022873c1869075ea123a814f157c5bf37cbd4f8b9f34076396a0e
|
|
4
|
+
data.tar.gz: b289b1718e6b24dd672ec758210ac483370b5fd56d583d8e6c7d06d3bfceca9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e914e35240ed44db0d6b822d83e9bfca1fb0573c37b054ba0f343df5378364a41c3f1f7f37634b5cc592111eea696128909c2c2f78667ba96da8ea86fea3f1d4
|
|
7
|
+
data.tar.gz: a74dedfd28fb9281a729a26de8c020d560cbc298ec23172db5d6425298094f085a79ee08c76d67da7af3f1b524eb20001f9e5b9e16b63e2c286fb041e0124edd
|
|
@@ -119,10 +119,7 @@ module Metanorma
|
|
|
119
119
|
|
|
120
120
|
def add_document_suffix(identifier, doc)
|
|
121
121
|
document_suffix = Metanorma::Utils::to_ncname(identifier)
|
|
122
|
-
|
|
123
|
-
%w[review to], %w[index to], %w[xref target],
|
|
124
|
-
%w[callout target]]
|
|
125
|
-
.each do |(tag_name, attribute_name)|
|
|
122
|
+
Metanorma::Utils::anchor_attributes.each do |(tag_name, attribute_name)|
|
|
126
123
|
add_suffix_to_attributes(doc, document_suffix, tag_name, attribute_name)
|
|
127
124
|
end
|
|
128
125
|
end
|
data/lib/metanorma/compile.rb
CHANGED
|
@@ -42,7 +42,7 @@ module Metanorma
|
|
|
42
42
|
when ".adoc" then process_input_adoc(filename, options)
|
|
43
43
|
when ".xml" then process_input_xml(filename, options)
|
|
44
44
|
else
|
|
45
|
-
Util.log("[metanorma] Error: file extension #{extname} "\
|
|
45
|
+
Util.log("[metanorma] Error: file extension #{extname} " \
|
|
46
46
|
"is not supported.", :error)
|
|
47
47
|
nil
|
|
48
48
|
end
|
|
@@ -150,7 +150,8 @@ module Metanorma
|
|
|
150
150
|
isodoc_options1)
|
|
151
151
|
wrap_html(options1, fnames1[:ext], fnames1[:out])
|
|
152
152
|
rescue StandardError => e
|
|
153
|
-
|
|
153
|
+
strict = ext == :presentation || isodoc_options1[:strict] == "true"
|
|
154
|
+
isodoc_error_process(e, strict)
|
|
154
155
|
end
|
|
155
156
|
|
|
156
157
|
def process_output_unthreaded(ext, fnames, isodoc, isodoc_options)
|
|
@@ -158,18 +159,19 @@ module Metanorma
|
|
|
158
159
|
isodoc_options)
|
|
159
160
|
nil # return as Thread
|
|
160
161
|
rescue StandardError => e
|
|
161
|
-
|
|
162
|
+
strict = ext == :presentation || isodoc_options[:strict] == "true"
|
|
163
|
+
isodoc_error_process(e, strict)
|
|
162
164
|
end
|
|
163
165
|
|
|
164
166
|
private
|
|
165
167
|
|
|
166
|
-
def isodoc_error_process(err)
|
|
167
|
-
if err.message.include?
|
|
168
|
+
def isodoc_error_process(err, strict)
|
|
169
|
+
if strict || err.message.include?("Fatal:")
|
|
168
170
|
@errors << err.message
|
|
169
171
|
else
|
|
170
172
|
puts err.message
|
|
171
|
-
puts err.backtrace.join("\n")
|
|
172
173
|
end
|
|
174
|
+
puts err.backtrace.join("\n")
|
|
173
175
|
end
|
|
174
176
|
|
|
175
177
|
# @param options [Hash]
|
|
@@ -72,7 +72,7 @@ module Metanorma
|
|
|
72
72
|
ret[:datauriimage] = true if options[:datauriimage]
|
|
73
73
|
ret[:sourcefilename] = options[:filename]
|
|
74
74
|
%i(bare sectionsplit no_install_fonts baseassetpath aligncrosselements
|
|
75
|
-
tocfigures toctables tocrecommendations)
|
|
75
|
+
tocfigures toctables tocrecommendations strict)
|
|
76
76
|
.each { |x| ret[x] ||= options[x] }
|
|
77
77
|
ext == :pdf && FontistUtils.has_fonts_manifest?(@processor, options) and
|
|
78
78
|
ret[:mn2pdf] =
|
data/lib/metanorma/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metanorma
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: asciidoctor
|