isodoc 2.1.5 → 2.2.2.2

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.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/isodoc.gemspec +5 -5
  3. data/lib/isodoc/class_utils.rb +1 -4
  4. data/lib/isodoc/convert.rb +56 -42
  5. data/lib/isodoc/function/inline.rb +12 -7
  6. data/lib/isodoc/function/references.rb +1 -1
  7. data/lib/isodoc/function/reqt.rb +17 -88
  8. data/lib/isodoc/function/section_titles.rb +3 -3
  9. data/lib/isodoc/function/table.rb +1 -1
  10. data/lib/isodoc/function/to_word_html.rb +7 -6
  11. data/lib/isodoc/function/utils.rb +4 -0
  12. data/lib/isodoc/init.rb +20 -0
  13. data/lib/isodoc/presentation_function/block.rb +23 -6
  14. data/lib/isodoc/presentation_function/image.rb +68 -19
  15. data/lib/isodoc/presentation_function/refs.rb +102 -0
  16. data/lib/isodoc/presentation_function/section.rb +1 -80
  17. data/lib/isodoc/presentation_function/terms.rb +9 -13
  18. data/lib/isodoc/presentation_xml_convert.rb +1 -0
  19. data/lib/isodoc/version.rb +1 -1
  20. data/lib/isodoc/word_function/postprocess.rb +1 -1
  21. data/lib/isodoc/xref/xref_counter.rb +12 -0
  22. data/lib/isodoc/xref/xref_gen.rb +17 -5
  23. data/lib/isodoc/xref/xref_gen_seq.rb +106 -81
  24. data/lib/isodoc/xref.rb +6 -0
  25. data/lib/isodoc-yaml/i18n-ar.yaml +0 -2
  26. data/lib/isodoc-yaml/i18n-de.yaml +0 -2
  27. data/lib/isodoc-yaml/i18n-en.yaml +9 -2
  28. data/lib/isodoc-yaml/i18n-es.yaml +0 -2
  29. data/lib/isodoc-yaml/i18n-fr.yaml +0 -2
  30. data/lib/isodoc-yaml/i18n-ru.yaml +0 -2
  31. data/lib/isodoc-yaml/i18n-zh-Hans.yaml +0 -2
  32. data/lib/relaton/render/general.rb +1 -18
  33. metadata +34 -26
  34. data/lib/isodoc/base_style/all.css +0 -227
  35. data/lib/isodoc/base_style/blocks.css +0 -0
  36. data/lib/isodoc/base_style/coverpage.css +0 -0
  37. data/lib/isodoc/base_style/defaults.css +0 -0
  38. data/lib/isodoc/base_style/metanorma_word.css +0 -47
  39. data/lib/isodoc/base_style/nav.css +0 -0
  40. data/lib/isodoc/base_style/reset.css +0 -125
  41. data/lib/isodoc/base_style/typography.css +0 -0
@@ -24,22 +24,24 @@ module IsoDoc
24
24
  c = Counter.new
25
25
  j = 0
26
26
  clause.xpath(ns(".//figure | .//sourcecode[not(ancestor::example)]"))
27
- .each do |t|
28
- next if blank?(t["id"])
29
-
27
+ .noblank.each do |t|
30
28
  j = subfigure_increment(j, c, t)
31
- label = c.print
32
- label &&= label + (j.zero? ? "" : "-#{j}")
33
-
34
- @anchors[t["id"]] = anchor_struct(
35
- label, nil, @labels["figure"], "figure", t["unnumbered"]
36
- )
29
+ sequential_figure_body(j, c, t)
37
30
  end
38
31
  end
39
32
 
33
+ def sequential_figure_body(subfignum, counter, block)
34
+ label = counter.print
35
+ label &&= label + (subfignum.zero? ? "" : "-#{subfignum}")
36
+
37
+ @anchors[block["id"]] = anchor_struct(
38
+ label, nil, @labels["figure"], "figure", block["unnumbered"]
39
+ )
40
+ end
41
+
40
42
  def sequential_table_names(clause)
41
43
  c = Counter.new
42
- clause.xpath(ns(".//table")).reject { |n| blank?(n["id"]) }.each do |t|
44
+ clause.xpath(ns(".//table")).noblank.each do |t|
43
45
  next if labelled_ancestor(t)
44
46
 
45
47
  @anchors[t["id"]] = anchor_struct(
@@ -51,9 +53,7 @@ module IsoDoc
51
53
 
52
54
  def sequential_formula_names(clause)
53
55
  c = Counter.new
54
- clause.xpath(ns(".//formula")).reject do |n|
55
- blank?(n["id"])
56
- end.each do |t|
56
+ clause.xpath(ns(".//formula")).noblank.each do |t|
57
57
  @anchors[t["id"]] = anchor_struct(
58
58
  c.increment(t).print, t,
59
59
  t["inequality"] ? @labels["inequality"] : @labels["formula"],
@@ -62,70 +62,98 @@ module IsoDoc
62
62
  end
63
63
  end
64
64
 
65
- FIRST_LVL_REQ = "[not(ancestor::permission or ancestor::requirement or "\
66
- "ancestor::recommendation)]".freeze
65
+ FIRST_LVL_REQ_RULE = <<~XPATH.freeze
66
+ [not(ancestor::permission or ancestor::requirement or ancestor::recommendation)]
67
+ XPATH
67
68
 
68
- def sequential_permission_names(clause, klass, label)
69
- c = Counter.new
70
- clause.xpath(ns(".//#{klass}#{FIRST_LVL_REQ}"))
71
- .reject { |n| blank?(n["id"]) }.each do |t|
72
- id = c.increment(t).print
73
- @anchors[t["id"]] =
74
- anchor_struct(id, t, label, klass, t["unnumbered"])
75
- sequential_permission_names2(t, id)
69
+ FIRST_LVL_REQ = <<~XPATH.freeze
70
+ .//permission#{FIRST_LVL_REQ_RULE} | .//requirement#{FIRST_LVL_REQ_RULE} | .//recommendation#{FIRST_LVL_REQ_RULE}
71
+ XPATH
72
+
73
+ REQ_CHILDREN = <<~XPATH.freeze
74
+ ./permission | ./requirement | ./recommendation
75
+ XPATH
76
+
77
+ def sequential_permission_names(clause)
78
+ c = ReqCounter.new
79
+ clause.xpath(ns(FIRST_LVL_REQ)).noblank.each do |t|
80
+ m = @reqt_models.model(t["model"])
81
+ klass, label = reqt2class_label(t, m)
82
+ id = c.increment(label, t).print
83
+ sequential_permission_body(id, t, label, klass, m)
84
+ sequential_permission_children(t, id)
76
85
  end
77
86
  end
78
87
 
79
- def sequential_permission_names2(elem, ident)
80
- sequential_permission_names1(elem, ident, "permission",
81
- @labels["permission"])
82
- sequential_permission_names1(elem, ident, "requirement",
83
- @labels["requirement"])
84
- sequential_permission_names1(elem, ident, "recommendation",
85
- @labels["recommendation"])
88
+ def sequential_permission_children(block, lbl)
89
+ c = ReqCounter.new
90
+ block.xpath(ns(REQ_CHILDREN)).noblank.each do |t|
91
+ m = @reqt_models.model(t["model"])
92
+ klass, label = reqt2class_nested_label(t, m)
93
+ id = "#{lbl}#{hierfigsep}#{c.increment(label, t).print}"
94
+ sequential_permission_body(id, t, label, klass, m)
95
+ sequential_permission_children(t, id)
96
+ end
86
97
  end
87
98
 
88
- def sequential_permission_names1(block, lbl, klass, label)
89
- c = Counter.new
90
- block.xpath(ns("./#{klass}")).reject { |n| blank?(n["id"]) }.each do |t|
91
- id = "#{lbl}#{hierfigsep}#{c.increment(t).print}"
92
- @anchors[t["id"]] =
93
- anchor_struct(id, t, label, klass, t["unnumbered"])
94
- sequential_permission_names2(t, id)
99
+ def sequential_permission_body(id, block, label, klass, model)
100
+ @anchors[block["id"]] = model.postprocess_anchor_struct(
101
+ block, anchor_struct(id, block,
102
+ label, klass, block["unnumbered"])
103
+ )
104
+
105
+ model.permission_parts(block, id, label, klass).each do |n|
106
+ @anchors[n[:id]] = anchor_struct(n[:number], n[:elem], n[:label],
107
+ n[:klass], false)
95
108
  end
96
109
  end
97
110
 
111
+ def reqt2class_label(block, model)
112
+ model.req_class_paths.each do |n|
113
+ v1 = ns("/#{n[:xpath]}").sub(%r{^/}, "")
114
+ block.at("./self::#{v1}") and return [n[:klass], n[:label]]
115
+ end
116
+ [nil, nil]
117
+ end
118
+
119
+ def reqt2class_nested_label(block, model)
120
+ model.req_nested_class_paths.each do |n|
121
+ v1 = ns("/#{n[:xpath]}").sub(%r{^/}, "")
122
+ block.at("./self::#{v1}") and return [n[:klass], n[:label]]
123
+ end
124
+ [nil, nil]
125
+ end
126
+
98
127
  def sequential_asset_names(clause)
99
128
  sequential_table_names(clause)
100
129
  sequential_figure_names(clause)
101
130
  sequential_formula_names(clause)
102
- sequential_permission_names(clause, "permission", @labels["permission"])
103
- sequential_permission_names(clause, "requirement",
104
- @labels["requirement"])
105
- sequential_permission_names(clause, "recommendation",
106
- @labels["recommendation"])
131
+ sequential_permission_names(clause)
107
132
  end
108
133
 
109
134
  def hierarchical_figure_names(clause, num)
110
135
  c = Counter.new
111
136
  j = 0
112
137
  clause.xpath(ns(".//figure | .//sourcecode[not(ancestor::example)]"))
113
- .each do |t|
138
+ .noblank.each do |t|
114
139
  # next if labelled_ancestor(t) && t.ancestors("figure").empty?
115
140
 
116
141
  j = subfigure_increment(j, c, t)
117
- label = "#{num}#{hiersep}#{c.print}" +
118
- (j.zero? ? "" : "#{hierfigsep}#{j}")
119
- next if t["id"].nil? || t["id"].empty?
120
-
121
- @anchors[t["id"]] = anchor_struct(label, nil, @labels["figure"],
122
- "figure", t["unnumbered"])
142
+ hierarchical_figure_body(num, j, c, t)
123
143
  end
124
144
  end
125
145
 
146
+ def hierarchical_figure_body(num, subfignum, counter, block)
147
+ label = "#{num}#{hiersep}#{counter.print}" +
148
+ (subfignum.zero? ? "" : "#{hierfigsep}#{subfignum}")
149
+
150
+ @anchors[block["id"]] = anchor_struct(label, nil, @labels["figure"],
151
+ "figure", block["unnumbered"])
152
+ end
153
+
126
154
  def hierarchical_table_names(clause, num)
127
155
  c = Counter.new
128
- clause.xpath(ns(".//table")).reject { |n| blank?(n["id"]) }.each do |t|
156
+ clause.xpath(ns(".//table")).noblank.each do |t|
129
157
  next if labelled_ancestor(t)
130
158
 
131
159
  @anchors[t["id"]] =
@@ -138,19 +166,12 @@ module IsoDoc
138
166
  hierarchical_table_names(clause, num)
139
167
  hierarchical_figure_names(clause, num)
140
168
  hierarchical_formula_names(clause, num)
141
- hierarchical_permission_names(clause, num, "permission",
142
- @labels["permission"])
143
- hierarchical_permission_names(clause, num, "requirement",
144
- @labels["requirement"])
145
- hierarchical_permission_names(clause, num, "recommendation",
146
- @labels["recommendation"])
169
+ hierarchical_permission_names(clause, num)
147
170
  end
148
171
 
149
172
  def hierarchical_formula_names(clause, num)
150
173
  c = Counter.new
151
- clause.xpath(ns(".//formula")).reject do |n|
152
- blank?(n["id"])
153
- end.each do |t|
174
+ clause.xpath(ns(".//formula")).noblank.each do |t|
154
175
  @anchors[t["id"]] = anchor_struct(
155
176
  "#{num}#{hiersep}#{c.increment(t).print}", nil,
156
177
  t["inequality"] ? @labels["inequality"] : @labels["formula"],
@@ -159,33 +180,37 @@ module IsoDoc
159
180
  end
160
181
  end
161
182
 
162
- def hierarchical_permission_names(clause, num, klass, label)
163
- c = Counter.new
164
- clause.xpath(ns(".//#{klass}#{FIRST_LVL_REQ}"))
165
- .reject { |n| blank?(n["id"]) }.each do |t|
166
- id = "#{num}#{hiersep}#{c.increment(t).print}"
167
- @anchors[t["id"]] =
168
- anchor_struct(id, nil, label, klass, t["unnumbered"])
169
- hierarchical_permission_names2(t, id)
183
+ def hierarchical_permission_names(clause, num)
184
+ c = ReqCounter.new
185
+ clause.xpath(ns(FIRST_LVL_REQ)).noblank.each do |t|
186
+ m = @reqt_models.model(t["model"])
187
+ klass, label = reqt2class_label(t, m)
188
+ id = "#{num}#{hiersep}#{c.increment(label, t).print}"
189
+ hierarchical_permission_body(id, t, label, klass, m)
190
+ hierarchical_permission_children(t, id)
170
191
  end
171
192
  end
172
193
 
173
- def hierarchical_permission_names2(elem, ident)
174
- hierarchical_permission_names1(elem, ident, "permission",
175
- @labels["permission"])
176
- hierarchical_permission_names1(elem, ident, "requirement",
177
- @labels["requirement"])
178
- hierarchical_permission_names1(elem, ident, "recommendation",
179
- @labels["recommendation"])
194
+ def hierarchical_permission_children(block, lbl)
195
+ c = ReqCounter.new
196
+ block.xpath(ns(REQ_CHILDREN)).noblank.each do |t|
197
+ m = @reqt_models.model(t["model"])
198
+ klass, label = reqt2class_nested_label(t, m)
199
+ id = "#{lbl}#{hierfigsep}#{c.increment(label, t).print}"
200
+ hierarchical_permission_body(id, t, label, klass, m)
201
+ hierarchical_permission_children(t, id)
202
+ end
180
203
  end
181
204
 
182
- def hierarchical_permission_names1(block, lbl, klass, label)
183
- c = Counter.new
184
- block.xpath(ns("./#{klass}")).reject { |n| blank?(n["id"]) }.each do |t|
185
- id = "#{lbl}#{hierfigsep}#{c.increment(t).print}"
186
- @anchors[t["id"]] =
187
- anchor_struct(id, nil, label, klass, t["unnumbered"])
188
- hierarchical_permission_names2(t, id)
205
+ def hierarchical_permission_body(id, block, label, klass, model)
206
+ @anchors[block["id"]] = model.postprocess_anchor_struct(
207
+ block, anchor_struct(id, nil,
208
+ label, klass, block["unnumbered"])
209
+ )
210
+
211
+ model.permission_parts(block, id, label, klass).each do |n|
212
+ @anchors[n[:id]] = anchor_struct(n[:number], nil, n[:label],
213
+ n[:klass], false)
189
214
  end
190
215
  end
191
216
  end
data/lib/isodoc/xref.rb CHANGED
@@ -24,6 +24,12 @@ module IsoDoc
24
24
  @i18n = i18n
25
25
  @labels = @i18n.get
26
26
  @klass.i18n = @i18n
27
+ @reqt_models = @klass.requirements_processor
28
+ .new({
29
+ default: "default", lang: lang, script: script,
30
+ labels: @i18n.get
31
+ })
32
+ @i18n
27
33
  @parse_settings = {}
28
34
  end
29
35
 
@@ -86,8 +86,6 @@ month_october: أكتوبر
86
86
  month_november: نوفمبر
87
87
  month_december: ديسمبر
88
88
  obligation: التزام
89
- subject: موضوع
90
- inherits: يرث
91
89
  admonition:
92
90
  danger: خطر
93
91
  warning: تحذير
@@ -92,8 +92,6 @@ month_october: Oktober
92
92
  month_november: November
93
93
  month_december: Dezember
94
94
  obligation: Verbindlichkeit
95
- subject: Thema
96
- inherits: Erbt
97
95
  admonition: {
98
96
  danger: Gefahr,
99
97
  warning: Warnung,
@@ -60,6 +60,15 @@ table: Table
60
60
  requirement: Requirement
61
61
  recommendation: Recommendation
62
62
  permission: Permission
63
+ # OGC
64
+ recommendationtest: Recommendation test
65
+ requirementtest: Requirement test
66
+ permissiontest: Permission test
67
+ recommendationclass: Recommendations class
68
+ requirementclass: Requirements class
69
+ permissionclass: Permissions class
70
+ abstracttest: Abstract test
71
+ conformanceclass: Conformance class
63
72
  key: Key
64
73
  example: EXAMPLE
65
74
  example_xref: Example
@@ -92,8 +101,6 @@ month_october: October
92
101
  month_november: November
93
102
  month_december: December
94
103
  obligation: Obligation
95
- subject: Subject
96
- inherits: Inherits
97
104
  admonition: {
98
105
  danger: Danger,
99
106
  warning: Warning,
@@ -92,8 +92,6 @@ month_october: Octubre
92
92
  month_november: Noviembre
93
93
  month_december: Diciembre
94
94
  obligation: Obligación
95
- subject: Tema
96
- inherits: Hereda
97
95
  admonition: {
98
96
  danger: Peligro,
99
97
  warning: Advertencia,
@@ -90,8 +90,6 @@ month_october: Octobre
90
90
  month_november: Novembre
91
91
  month_december: Décembre
92
92
  obligation: Obligation
93
- subject: Sujet
94
- inherits: Hérite
95
93
  admonition: {
96
94
  danger: Danger,
97
95
  warning: Avertissement,
@@ -97,8 +97,6 @@ month_october: Октябрь
97
97
  month_november: Ноябрь
98
98
  month_december: Декабрь
99
99
  obligation: Обязательство
100
- subject: Тема
101
- inherits: Наследует
102
100
  admonition: {
103
101
  danger: Опасность,
104
102
  warning: Предупреждение,
@@ -87,8 +87,6 @@ month_october: 十月
87
87
  month_november: 十一月
88
88
  month_december: 十二月
89
89
  obligation: 义务
90
- subject: 主体
91
- inherits: 继承自
92
90
  admonition: {
93
91
  danger: 危险,
94
92
  warning: 警告,
@@ -1,4 +1,5 @@
1
1
  require "relaton-render"
2
+ require "metanorma-utils"
2
3
 
3
4
  module Relaton
4
5
  module Render
@@ -15,21 +16,3 @@ module Relaton
15
16
  end
16
17
  end
17
18
  end
18
-
19
- class ::Hash
20
- def deep_merge(second)
21
- merger = proc { |_, v1, v2|
22
- if Hash === v1 && Hash === v2
23
- v1.merge(v2, &merger)
24
- elsif Array === v1 && Array === v2
25
- v1 | v2
26
- elsif [:undefined, nil,
27
- :nil].include?(v2)
28
- v1
29
- else
30
- v2
31
- end
32
- }
33
- merge(second.to_h, &merger)
34
- end
35
- end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isodoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.5
4
+ version: 2.2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-18 00:00:00.000000000 Z
11
+ date: 2022-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: asciimath
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 1.0.0
61
+ version: 1.0.6
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 1.0.0
68
+ version: 1.0.6
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: liquid
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -112,16 +112,30 @@ dependencies:
112
112
  name: metanorma-utils
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - ">="
115
+ - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: '0'
117
+ version: 1.3.2
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - ">="
122
+ - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: '0'
124
+ version: 1.3.2
125
+ - !ruby/object:Gem::Dependency
126
+ name: mn-requirements
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 0.1.2
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: 0.1.2
125
139
  - !ruby/object:Gem::Dependency
126
140
  name: relaton-cli
127
141
  requirement: !ruby/object:Gem::Requirement
@@ -140,16 +154,16 @@ dependencies:
140
154
  name: relaton-render
141
155
  requirement: !ruby/object:Gem::Requirement
142
156
  requirements:
143
- - - ">="
157
+ - - "~>"
144
158
  - !ruby/object:Gem::Version
145
- version: 0.3.1
159
+ version: 0.4.0
146
160
  type: :runtime
147
161
  prerelease: false
148
162
  version_requirements: !ruby/object:Gem::Requirement
149
163
  requirements:
150
- - - ">="
164
+ - - "~>"
151
165
  - !ruby/object:Gem::Version
152
- version: 0.3.1
166
+ version: 0.4.0
153
167
  - !ruby/object:Gem::Dependency
154
168
  name: roman-numerals
155
169
  requirement: !ruby/object:Gem::Requirement
@@ -268,14 +282,14 @@ dependencies:
268
282
  requirements:
269
283
  - - ">="
270
284
  - !ruby/object:Gem::Version
271
- version: '0'
285
+ version: 2.1.7
272
286
  type: :development
273
287
  prerelease: false
274
288
  version_requirements: !ruby/object:Gem::Requirement
275
289
  requirements:
276
290
  - - ">="
277
291
  - !ruby/object:Gem::Version
278
- version: '0'
292
+ version: 2.1.7
279
293
  - !ruby/object:Gem::Dependency
280
294
  name: rake
281
295
  requirement: !ruby/object:Gem::Requirement
@@ -398,23 +412,15 @@ files:
398
412
  - lib/isodoc-yaml/i18n-ru.yaml
399
413
  - lib/isodoc-yaml/i18n-zh-Hans.yaml
400
414
  - lib/isodoc.rb
401
- - lib/isodoc/base_style/all.css
402
415
  - lib/isodoc/base_style/all.scss
403
416
  - lib/isodoc/base_style/bands.scss
404
- - lib/isodoc/base_style/blocks.css
405
417
  - lib/isodoc/base_style/blocks.scss
406
- - lib/isodoc/base_style/coverpage.css
407
418
  - lib/isodoc/base_style/coverpage.scss
408
- - lib/isodoc/base_style/defaults.css
409
419
  - lib/isodoc/base_style/defaults.scss
410
- - lib/isodoc/base_style/metanorma_word.css
411
420
  - lib/isodoc/base_style/metanorma_word.scss
412
- - lib/isodoc/base_style/nav.css
413
421
  - lib/isodoc/base_style/nav.scss
414
- - lib/isodoc/base_style/reset.css
415
422
  - lib/isodoc/base_style/reset.scss
416
423
  - lib/isodoc/base_style/scripts.html
417
- - lib/isodoc/base_style/typography.css
418
424
  - lib/isodoc/base_style/typography.scss
419
425
  - lib/isodoc/class_utils.rb
420
426
  - lib/isodoc/common.rb
@@ -448,6 +454,7 @@ files:
448
454
  - lib/isodoc/html_function/postprocess.rb
449
455
  - lib/isodoc/html_function/postprocess_footnotes.rb
450
456
  - lib/isodoc/i18n.rb
457
+ - lib/isodoc/init.rb
451
458
  - lib/isodoc/metadata.rb
452
459
  - lib/isodoc/metadata_contributor.rb
453
460
  - lib/isodoc/metadata_date.rb
@@ -457,6 +464,7 @@ files:
457
464
  - lib/isodoc/presentation_function/image.rb
458
465
  - lib/isodoc/presentation_function/inline.rb
459
466
  - lib/isodoc/presentation_function/math.rb
467
+ - lib/isodoc/presentation_function/refs.rb
460
468
  - lib/isodoc/presentation_function/section.rb
461
469
  - lib/isodoc/presentation_function/terms.rb
462
470
  - lib/isodoc/presentation_function/xrefs.rb
@@ -489,7 +497,7 @@ homepage: https://github.com/metanorma/isodoc
489
497
  licenses:
490
498
  - BSD-2-Clause
491
499
  metadata: {}
492
- post_install_message:
500
+ post_install_message:
493
501
  rdoc_options: []
494
502
  require_paths:
495
503
  - lib
@@ -504,8 +512,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
504
512
  - !ruby/object:Gem::Version
505
513
  version: '0'
506
514
  requirements: []
507
- rubygems_version: 3.3.16
508
- signing_key:
515
+ rubygems_version: 3.1.6
516
+ signing_key:
509
517
  specification_version: 4
510
518
  summary: Convert documents in IsoDoc into Word and HTML in AsciiDoc.
511
519
  test_files: []