metanorma-un 0.12.8 → 0.12.10
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/un/base_convert.rb +2 -2
- data/lib/isodoc/un/html/htmlstyle.css +53 -0
- data/lib/isodoc/un/html_convert.rb +1 -1
- data/lib/isodoc/un/un.plenary-attachment.xsl +1262 -878
- data/lib/isodoc/un/un.plenary.xsl +1262 -878
- data/lib/isodoc/un/un.recommendation.xsl +1262 -878
- data/lib/isodoc/un/word_convert.rb +1 -1
- data/lib/metanorma/un/basicdoc.rng +840 -419
- data/lib/metanorma/un/biblio.rng +26 -27
- data/lib/metanorma/un/converter.rb +7 -2
- data/lib/metanorma/un/isodoc.rng +351 -510
- data/lib/metanorma/un/un.rng +38 -92
- data/lib/metanorma/un/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: d03895c10357482fce33d21c60982d847114eed9f059d63091ee098eef0eeef1
|
4
|
+
data.tar.gz: 8b7c614b6f268b632f444b5cd183047a23f4e919ce30bf2b7ba9fd104ae2cb1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 076be2f177b2f186ff2261c365c227c16cd2ad4c726d01f745261e37a2434555c0af2a987d96a4b9ba2f21016fdfe4d3cccb3f78720b44fed5f5668909235408
|
7
|
+
data.tar.gz: d4ac6ba1b5e407b864f090f9b533e35313a7825ba155eed221374910afd3c774b6e7d7ab1e78006294b97e1b517e2d71820c202e1b04b5b21f6878a226085ceb
|
@@ -27,13 +27,13 @@ module IsoDoc
|
|
27
27
|
end
|
28
28
|
|
29
29
|
def inline_header_title(out, _node, title)
|
30
|
-
out.span class: "zzMoveToFollowing" do |s|
|
30
|
+
out.span class: "zzMoveToFollowing inline-header" do |s|
|
31
31
|
title&.children&.each { |c2| parse(c2, s) }
|
32
32
|
clausedelimspace(_node, out) if /\S/.match?(title&.text)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
-
def
|
36
|
+
def plenary?(docxml)
|
37
37
|
return true if %w(plenary agenda budgetary).include?(@doctype)
|
38
38
|
return true if docxml&.at(ns("//bibdata/ext/session/*"))
|
39
39
|
|
@@ -1,3 +1,4 @@
|
|
1
|
+
@charset "UTF-8";
|
1
2
|
/*
|
2
3
|
0 CSS RESET
|
3
4
|
*/
|
@@ -176,6 +177,58 @@ table.rouge-line-table pre {
|
|
176
177
|
overflow-x: visible;
|
177
178
|
font-size: 100%; }
|
178
179
|
|
180
|
+
/* header § links */
|
181
|
+
a.header {
|
182
|
+
color: inherit;
|
183
|
+
text-decoration: none; }
|
184
|
+
|
185
|
+
a.header:hover {
|
186
|
+
color: #a53221 !important;
|
187
|
+
background: inherit;
|
188
|
+
box-shadow: none; }
|
189
|
+
|
190
|
+
a.header:visited {
|
191
|
+
color: inherit;
|
192
|
+
text-decoration: none; }
|
193
|
+
|
194
|
+
a.anchor {
|
195
|
+
position: absolute;
|
196
|
+
z-index: 1001;
|
197
|
+
width: 1.5ex;
|
198
|
+
margin-left: -1.5ex;
|
199
|
+
display: block;
|
200
|
+
text-decoration: none !important;
|
201
|
+
visibility: hidden;
|
202
|
+
text-align: center;
|
203
|
+
font-weight: 400; }
|
204
|
+
|
205
|
+
a.anchor::before {
|
206
|
+
content: "\00A7";
|
207
|
+
font-size: .85em;
|
208
|
+
display: block;
|
209
|
+
padding-top: .1em; }
|
210
|
+
|
211
|
+
a.anchor:hover {
|
212
|
+
color: #a53221;
|
213
|
+
background: inherit;
|
214
|
+
box-shadow: none; }
|
215
|
+
|
216
|
+
h1 > a.anchor:hover,
|
217
|
+
h2 > a.anchor:hover,
|
218
|
+
h3 > a.anchor:hover,
|
219
|
+
h4 > a.anchor:hover,
|
220
|
+
h5 > a.anchor:hover,
|
221
|
+
h6 > a.anchor:hover,
|
222
|
+
.inline-header > a.anchor:hover,
|
223
|
+
h1:hover > a.anchor,
|
224
|
+
h2:hover > a.anchor,
|
225
|
+
h3:hover > a.anchor,
|
226
|
+
h4:hover > a.anchor,
|
227
|
+
h5:hover > a.anchor,
|
228
|
+
h6:hover > a.anchor,
|
229
|
+
.inline-header:hover > a.anchor {
|
230
|
+
visibility: visible; }
|
231
|
+
|
179
232
|
#standard-band {
|
180
233
|
background-color: #0AC442; }
|
181
234
|
|