metanorma-iso 2.0.0 → 2.0.1
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/isodoc/iso/html/style-human.css +18 -14
- data/lib/isodoc/iso/html/style-human.scss +7 -2
- data/lib/isodoc/iso/html/style-iso.css +20 -15
- data/lib/isodoc/iso/html/style-iso.scss +8 -2
- data/lib/isodoc/iso/iso.amendment.xsl +1165 -1123
- data/lib/isodoc/iso/iso.international-standard.xsl +1165 -1123
- data/lib/isodoc/iso/word_convert.rb +2 -0
- data/lib/metanorma/iso/version.rb +1 -1
- data/spec/vcr_cassettes/docrels.yml +32 -32
- metadata +2 -2
@@ -154,11 +154,13 @@ module IsoDoc
|
|
154
154
|
end
|
155
155
|
|
156
156
|
def annex_name(_annex, name, div)
|
157
|
+
preceding_floating_titles(name, div)
|
157
158
|
return if name.nil?
|
158
159
|
|
159
160
|
name&.at(ns("./strong"))&.remove # supplied by CSS list numbering
|
160
161
|
div.h1 **{ class: "Annex" } do |t|
|
161
162
|
name.children.each { |c2| parse(c2, t) }
|
163
|
+
clause_parse_subtitle(name, t)
|
162
164
|
end
|
163
165
|
end
|
164
166
|
|