metanorma-ribose 2.2.4 → 2.2.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7fe161c84c37ab5b701b48ad724eb21fd1b1eb9e7fbf5b51baeef16135f0ad3
4
- data.tar.gz: 64eaca15058fac006e020351807e8646ca000e515fd03ce676a9af4decaa4b39
3
+ metadata.gz: ae1e08fd6979e8b7f5cff2aaeb00f6fe5d9322869ce7f1da3a9e5a565ac1ee83
4
+ data.tar.gz: 81a7d80ec099d88f73e23af6c54ef92a0ffc095015b583a47a06dfebd3934fd8
5
5
  SHA512:
6
- metadata.gz: 523c6ab1d22bf87d03cad3bdebf78cf2cda78e675e2cd071e059e670e8cd330a17a6943a2cb8cf38d6e42f00ece0a02b61a03eafb1e202285dfaa15cbeca9c64
7
- data.tar.gz: 27ebab46f0aec117f8f5ffee0883ae8378d1cc025b10d6b0517d92ab6adcc75352de9d53c324a3639df31c3d745f0f7dd46a5be146a76e55601e5e7390f780a8
6
+ metadata.gz: 5a31631f232705210512e777fee5af9c84d0724e34f28b97b3148553042c50f51ebce9758776155a325d6b8e0b4781733f75f0037883d28390c164c8a5807275
7
+ data.tar.gz: 3f97800ccb9d8812abf2699a862a930ddf9e7040fc256d85250817faa21b3d503b84451ba92682e3b9a07066f5c1dd9d61b6bbd8110bb37c7f71686e76161a7b
@@ -5,8 +5,8 @@ module IsoDoc
5
5
  f = docxml.at(ns("//executivesummary")) || return
6
6
  title_attr = { class: "IntroTitle" }
7
7
  page_break(out)
8
- out.div **{ class: "Section3", id: f["id"] } do |div|
9
- clause_name(nil, f&.at(ns("./title")), div, title_attr)
8
+ out.div class: "Section3", id: f["id"] do |div|
9
+ clause_name(f, f&.at(ns("./title")), div, title_attr)
10
10
  f.elements.each do |e|
11
11
  parse(e, div) unless e.name == "title"
12
12
  end
@@ -124,6 +124,10 @@ a.FootnoteRef + a.FootnoteRef:before {
124
124
  content: ", ";
125
125
  vertical-align: super; }
126
126
 
127
+ a.TableFootnoteRef + a.TableFootnoteRef:before {
128
+ content: ", ";
129
+ vertical-align: super; }
130
+
127
131
  .addition {
128
132
  color: blue; }
129
133