metanorma 1.5.3 → 1.5.4
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/input/asciidoc.rb +3 -14
- data/lib/metanorma/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 758d48f89ac77f45c22c5982eb021778e27649e6bedb4e59093f4c54bb03e752
|
|
4
|
+
data.tar.gz: 0714c39311ab9125cff1e7049410e615b597b033d38de4f4722ed766da4eb51f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d49ff8e5dabd1a92f1ad9c1ef23f285ac23e6491cab5779105a05ab2d5b6a93879fce50e25ff2baf0bd95ea41af4b61f0481aa4c23bc462e9c6cee61a5c6221d
|
|
7
|
+
data.tar.gz: 06c86d497292b5a70e3bb55abf4d2de9d672b36b380362a402bd2324c02a6e668b5186ccac5b068f1946a5b2607844bee62d01adbc5388e5519fb00f61e4b0f1
|
|
@@ -70,11 +70,11 @@ module Metanorma
|
|
|
70
70
|
pdf-allow-print pdf-allow-print-hq pdf-allow-fill-in-forms
|
|
71
71
|
fonts font-license-agreement pdf-allow-access-content
|
|
72
72
|
pdf-encrypt-metadata iso-word-template document-scheme
|
|
73
|
-
localize-number iso-word-bg-strip-color
|
|
74
|
-
|
|
73
|
+
localize-number iso-word-bg-strip-color modspec-identifier-base
|
|
74
|
+
).freeze
|
|
75
75
|
|
|
76
76
|
EMPTY_ADOC_OPTIONS_DEFAULT_TRUE =
|
|
77
|
-
%w(data-uri-image suppress-asciimath-dup use-xinclude).freeze
|
|
77
|
+
%w(data-uri-image suppress-asciimath-dup use-xinclude source-highlighter).freeze
|
|
78
78
|
|
|
79
79
|
EMPTY_ADOC_OPTIONS_DEFAULT_FALSE =
|
|
80
80
|
%w(hierarchical-assets break-up-urls-in-tables toc-figures
|
|
@@ -93,25 +93,14 @@ module Metanorma
|
|
|
93
93
|
end
|
|
94
94
|
ret2 = EMPTY_ADOC_OPTIONS_DEFAULT_TRUE.each_with_object({}) do |w, acc|
|
|
95
95
|
m = /\n:#{w}:([^\n]*)\n/.match(header) || [nil, "true"]
|
|
96
|
-
#require "debug" binding.b if w == "break-up-urls-in-tables"
|
|
97
96
|
acc[attr_name_normalise(w)] = (m[1].strip != "false")
|
|
98
97
|
end
|
|
99
98
|
ret3 = EMPTY_ADOC_OPTIONS_DEFAULT_FALSE.each_with_object({}) do |w, acc|
|
|
100
99
|
m = /\n:#{w}:([^\n]*)\n/.match(header) || [nil, "false"]
|
|
101
|
-
#require "debug" binding.b if w == "break-up-urls-in-tables"
|
|
102
100
|
acc[attr_name_normalise(w)] = !["false"].include?(m[1].strip)
|
|
103
101
|
end
|
|
104
102
|
ret.merge(ret2).merge(ret3).compact
|
|
105
103
|
end
|
|
106
|
-
|
|
107
|
-
# ret.merge(
|
|
108
|
-
# datauriimage: defined?(datauriimage) ? datauriimage != "false" : true,
|
|
109
|
-
# suppressasciimathdup: defined?(suppress_asciimath_dup) ? suppress_asciimath_dup != "false" : nil,
|
|
110
|
-
# hierarchical_assets: defined?(hier_assets) ? hier_assets : nil,
|
|
111
|
-
# use_xinclude: defined?(use_xinclude) ? use_xinclude : nil,
|
|
112
|
-
# break_up_urls_in_tables: defined?(break_up) ? break_up : nil,
|
|
113
|
-
# ).compact
|
|
114
|
-
# end
|
|
115
104
|
end
|
|
116
105
|
end
|
|
117
106
|
end
|
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.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: asciidoctor
|
|
@@ -311,7 +311,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
311
311
|
- !ruby/object:Gem::Version
|
|
312
312
|
version: '0'
|
|
313
313
|
requirements: []
|
|
314
|
-
rubygems_version: 3.3.
|
|
314
|
+
rubygems_version: 3.3.26
|
|
315
315
|
signing_key:
|
|
316
316
|
specification_version: 4
|
|
317
317
|
summary: Metanorma is the standard of standards; the metanorma gem allows you to create
|