metanorma-jis 0.5.2 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abd40a2bc3e57de414cd4e120bf1a1c3416c20284a985253ce0d1a23f56b67eb
4
- data.tar.gz: 34ad9d689e173e43a28fbcd8ced02ac3fcdc0549b21cb253e4e20a0bf51a0afe
3
+ metadata.gz: 55df8821b6b10d957c78661a28310229a211e2f436fe83a46d40aa62d8bc7f79
4
+ data.tar.gz: 804934a1f4bfb4c2d2a3abad4ea557b5daa7c7eb827484c8a3c5d094f5387e1d
5
5
  SHA512:
6
- metadata.gz: fcfae9c4647c416c89e5657aa66be23028312c42f1d1b20c873e1491839030cc7a541a7809514405782a86c4056fc3059cbb67d7788c1cc1a5c69234e0f1d52e
7
- data.tar.gz: a303a12a0ac196d48eb0e14f93f7fe2ed9e65fde5f9f9952ca578404490b91f92c580da8f8e0f70155e8ddfea38bd70828adae4fad29bb077de590c17484aa38
6
+ metadata.gz: 0bb172cb26ce8d5896cd4efa7111a432e86f9ed7c0c50cfdd26a0f0f60d53e0fd77d6f03dd93d7981920b54b8db151f38cdf6232f8ab5edd6ea0c06704742427
7
+ data.tar.gz: f4fb40e409e343dce9282c43cc0297a692c3221cfbce756c972301de289742489a9788d0821462e2a87e52c9b4358124b5740ba0d7ca8b56a6592045d03c41d3
@@ -89,10 +89,11 @@ module IsoDoc
89
89
  end
90
90
  end
91
91
 
92
- # table name footnote is formatted like other footnotes, since table name
92
+ # table name footnote is formatted like other footnotes, since table name
93
93
  # is a table row.
94
94
  def footnote_parse(node, out)
95
95
  return table_footnote_parse(node, out) if @in_table
96
+
96
97
  super
97
98
  end
98
99
  end
@@ -318,6 +318,13 @@ h6:hover > a.anchor,
318
318
  padding: 0;
319
319
  }
320
320
 
321
+ svg {
322
+ width: 100%;
323
+ padding-bottom: 92%;
324
+ height: 1px;
325
+ overflow: visible;
326
+ }
327
+
321
328
  #standard-band {
322
329
  background-color: #0AC442;
323
330
  }
@@ -318,6 +318,13 @@ h6:hover > a.anchor,
318
318
  padding: 0;
319
319
  }
320
320
 
321
+ svg {
322
+ width: 100%;
323
+ padding-bottom: 92%;
324
+ height: 1px;
325
+ overflow: visible;
326
+ }
327
+
321
328
  #standard-band {
322
329
  background-color: #0AC442;
323
330
  }
@@ -35,20 +35,6 @@ module IsoDoc
35
35
  }
36
36
  end
37
37
 
38
- # TODO to Presentation XML
39
- # KILL
40
- def make_table_footnote_targetx(out, fnid, fnref)
41
- attrs = { id: fnid, class: "TableFootnoteRef" }
42
- out.span do |s|
43
- # TODO to Presentation XML
44
- s << @i18n.table_footnote
45
- out.span **attrs do |a|
46
- a << fnref
47
- end
48
- insert_tab(s, 1)
49
- end
50
- end
51
-
52
38
  include BaseConvert
53
39
  include Init
54
40
  end