isodoc 2.2.0 → 2.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/isodoc.gemspec +5 -5
- data/lib/isodoc/class_utils.rb +1 -4
- data/lib/isodoc/convert.rb +56 -42
- data/lib/isodoc/function/references.rb +1 -1
- data/lib/isodoc/function/reqt.rb +17 -88
- data/lib/isodoc/function/table.rb +1 -1
- data/lib/isodoc/function/to_word_html.rb +6 -5
- data/lib/isodoc/function/utils.rb +4 -0
- data/lib/isodoc/i18n.rb +3 -18
- data/lib/isodoc/init.rb +20 -0
- data/lib/isodoc/pdf_convert.rb +0 -1
- data/lib/isodoc/presentation_function/block.rb +23 -6
- data/lib/isodoc/presentation_function/image.rb +68 -19
- data/lib/isodoc/presentation_function/refs.rb +102 -0
- data/lib/isodoc/presentation_function/section.rb +1 -80
- data/lib/isodoc/presentation_function/terms.rb +9 -13
- data/lib/isodoc/presentation_xml_convert.rb +1 -0
- data/lib/isodoc/version.rb +1 -1
- data/lib/isodoc/xref/xref_counter.rb +12 -0
- data/lib/isodoc/xref/xref_gen.rb +17 -5
- data/lib/isodoc/xref/xref_gen_seq.rb +106 -81
- data/lib/isodoc/xref.rb +6 -0
- data/lib/isodoc/xslfo_convert.rb +0 -2
- data/lib/isodoc-yaml/i18n-ar.yaml +0 -2
- data/lib/isodoc-yaml/i18n-de.yaml +0 -2
- data/lib/isodoc-yaml/i18n-en.yaml +9 -2
- data/lib/isodoc-yaml/i18n-es.yaml +0 -2
- data/lib/isodoc-yaml/i18n-fr.yaml +0 -2
- data/lib/isodoc-yaml/i18n-ru.yaml +0 -2
- data/lib/isodoc-yaml/i18n-zh-Hans.yaml +0 -2
- data/lib/relaton/render/general.rb +5 -19
- metadata +42 -34
- data/lib/isodoc/base_style/all.css +0 -227
- data/lib/isodoc/base_style/blocks.css +0 -0
- data/lib/isodoc/base_style/coverpage.css +0 -0
- data/lib/isodoc/base_style/defaults.css +0 -0
- data/lib/isodoc/base_style/metanorma_word.css +0 -47
- data/lib/isodoc/base_style/nav.css +0 -0
- data/lib/isodoc/base_style/reset.css +0 -125
- data/lib/isodoc/base_style/typography.css +0 -0
@@ -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,
|
@@ -1,11 +1,15 @@
|
|
1
1
|
require "relaton-render"
|
2
|
+
require "metanorma-utils"
|
2
3
|
|
3
4
|
module Relaton
|
4
5
|
module Render
|
5
6
|
module IsoDoc
|
6
7
|
class General < ::Relaton::Render::General
|
8
|
+
Hash.include Metanorma::Utils::Hash
|
9
|
+
|
7
10
|
def config_loc
|
8
|
-
YAML.load_file(File.join(File.dirname(__FILE__),
|
11
|
+
YAML.load_file(File.join(File.dirname(__FILE__),
|
12
|
+
"config.yml"))
|
9
13
|
end
|
10
14
|
|
11
15
|
def read_config
|
@@ -15,21 +19,3 @@ module Relaton
|
|
15
19
|
end
|
16
20
|
end
|
17
21
|
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.2.
|
4
|
+
version: 2.2.3
|
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-
|
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.
|
61
|
+
version: 1.0.7
|
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.
|
68
|
+
version: 1.0.7
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: liquid
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -110,6 +110,20 @@ dependencies:
|
|
110
110
|
version: '0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: metanorma-utils
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 1.4.0
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 1.4.0
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: mn2pdf
|
113
127
|
requirement: !ruby/object:Gem::Requirement
|
114
128
|
requirements:
|
115
129
|
- - ">="
|
@@ -122,6 +136,20 @@ dependencies:
|
|
122
136
|
- - ">="
|
123
137
|
- !ruby/object:Gem::Version
|
124
138
|
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: mn-requirements
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 0.1.3
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 0.1.3
|
125
153
|
- !ruby/object:Gem::Dependency
|
126
154
|
name: relaton-cli
|
127
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -140,16 +168,16 @@ dependencies:
|
|
140
168
|
name: relaton-render
|
141
169
|
requirement: !ruby/object:Gem::Requirement
|
142
170
|
requirements:
|
143
|
-
- - "
|
171
|
+
- - "~>"
|
144
172
|
- !ruby/object:Gem::Version
|
145
|
-
version: 0.
|
173
|
+
version: 0.4.0
|
146
174
|
type: :runtime
|
147
175
|
prerelease: false
|
148
176
|
version_requirements: !ruby/object:Gem::Requirement
|
149
177
|
requirements:
|
150
|
-
- - "
|
178
|
+
- - "~>"
|
151
179
|
- !ruby/object:Gem::Version
|
152
|
-
version: 0.
|
180
|
+
version: 0.4.0
|
153
181
|
- !ruby/object:Gem::Dependency
|
154
182
|
name: roman-numerals
|
155
183
|
requirement: !ruby/object:Gem::Requirement
|
@@ -262,20 +290,6 @@ dependencies:
|
|
262
290
|
- - "~>"
|
263
291
|
- !ruby/object:Gem::Version
|
264
292
|
version: '4.7'
|
265
|
-
- !ruby/object:Gem::Dependency
|
266
|
-
name: metanorma-iso
|
267
|
-
requirement: !ruby/object:Gem::Requirement
|
268
|
-
requirements:
|
269
|
-
- - ">="
|
270
|
-
- !ruby/object:Gem::Version
|
271
|
-
version: '0'
|
272
|
-
type: :development
|
273
|
-
prerelease: false
|
274
|
-
version_requirements: !ruby/object:Gem::Requirement
|
275
|
-
requirements:
|
276
|
-
- - ">="
|
277
|
-
- !ruby/object:Gem::Version
|
278
|
-
version: '0'
|
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.
|
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: []
|
@@ -1,227 +0,0 @@
|
|
1
|
-
html, body, div, span, applet, object, iframe,
|
2
|
-
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
3
|
-
a, abbr, acronym, address, big, cite, code,
|
4
|
-
del, dfn, em, img, ins, kbd, q, s, samp,
|
5
|
-
small, strike, strong, sub, sup, tt, var,
|
6
|
-
b, u, i, center,
|
7
|
-
ol, ul, li,
|
8
|
-
fieldset, form, label, legend,
|
9
|
-
table, caption, tbody, tfoot, thead, tr, th, td,
|
10
|
-
article, aside, canvas, details, embed,
|
11
|
-
figure, figcaption, footer, header, hgroup,
|
12
|
-
menu, output, ruby, section, summary,
|
13
|
-
time, mark, audio, video {
|
14
|
-
margin: 0;
|
15
|
-
padding: 0; }
|
16
|
-
|
17
|
-
html, body, div, span, applet, object, iframe,
|
18
|
-
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
19
|
-
a, abbr, acronym, address, big, cite, code,
|
20
|
-
del, dfn, em, img, ins, kbd, q, s, samp,
|
21
|
-
small, strike, strong, sub, sup, tt, var,
|
22
|
-
b, u, i, center,
|
23
|
-
dl, dt, dd, ol, ul, li,
|
24
|
-
fieldset, form, label, legend,
|
25
|
-
table, caption, tbody, tfoot, thead, tr, th, td,
|
26
|
-
article, aside, canvas, details, embed,
|
27
|
-
figure, figcaption, footer, header, hgroup,
|
28
|
-
menu, nav, output, ruby, section, summary,
|
29
|
-
time, mark, audio, video {
|
30
|
-
border: 0;
|
31
|
-
font-size: 100%; }
|
32
|
-
|
33
|
-
html, body, div, span, applet, object, iframe,
|
34
|
-
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
35
|
-
a, abbr, acronym, address, big, cite, code,
|
36
|
-
del, dfn, em, img, ins, kbd, q, s, samp,
|
37
|
-
small, strike, strong, tt, var,
|
38
|
-
b, u, i, center,
|
39
|
-
dl, dd, ol, ul, li,
|
40
|
-
fieldset, form, label, legend,
|
41
|
-
table, caption, tbody, tfoot, thead, tr, th, td,
|
42
|
-
article, aside, canvas, details, embed,
|
43
|
-
figure, figcaption, footer, header, hgroup,
|
44
|
-
menu, nav, output, ruby, section, summary,
|
45
|
-
time, mark, audio, video {
|
46
|
-
vertical-align: baseline; }
|
47
|
-
|
48
|
-
html, body, div, span, applet, object, iframe,
|
49
|
-
p, blockquote,
|
50
|
-
a, abbr, acronym, address, big, cite,
|
51
|
-
del, dfn, em, img, ins, q, s,
|
52
|
-
small, strike, strong, sub, sup, var,
|
53
|
-
b, u, i, center,
|
54
|
-
dl, dt, dd, ol, ul, li,
|
55
|
-
fieldset, form, label, legend,
|
56
|
-
table, caption, tbody, tfoot, thead, tr, th, td,
|
57
|
-
article, aside, canvas, details, embed,
|
58
|
-
figure, figcaption, footer, header, hgroup,
|
59
|
-
menu, nav, output, ruby, section, summary,
|
60
|
-
time, mark, audio, video {
|
61
|
-
font-family: {{bodyfont}}; }
|
62
|
-
|
63
|
-
code, pre, tt, kbd, samp {
|
64
|
-
font-family: {{monospacefont}};
|
65
|
-
font-variant-ligatures: none; }
|
66
|
-
|
67
|
-
code *, pre *, tt *, kbd *, samp * {
|
68
|
-
font-family: {{monospacefont}} !important;
|
69
|
-
font-variant-ligatures: none; }
|
70
|
-
|
71
|
-
p code, dt code, li code, label code, legend code, caption code, th code, td code,
|
72
|
-
p tt, dt tt, li tt, label tt, legend tt, caption tt, th tt, td tt,
|
73
|
-
p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
|
74
|
-
p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
|
75
|
-
font-size: {{monospacefontsize}}; }
|
76
|
-
|
77
|
-
article, aside, details, figcaption, figure,
|
78
|
-
footer, header, hgroup, menu, nav, section {
|
79
|
-
display: block; }
|
80
|
-
|
81
|
-
table {
|
82
|
-
border-collapse: collapse;
|
83
|
-
border-spacing: 0; }
|
84
|
-
|
85
|
-
h1, h2, h3, h4, h5, h6 {
|
86
|
-
font-family: {{headerfont}}; }
|
87
|
-
|
88
|
-
.h1, .h2, .h3, .h4, .h5, .h6 {
|
89
|
-
font-family: {{headerfont}}; }
|
90
|
-
|
91
|
-
blockquote, q {
|
92
|
-
quotes: none; }
|
93
|
-
blockquote:before, blockquote:after, q:before, q:after {
|
94
|
-
content: '';
|
95
|
-
content: none; }
|
96
|
-
|
97
|
-
.h2Annex {
|
98
|
-
font-family: {{headerfont}}; }
|
99
|
-
|
100
|
-
dl {
|
101
|
-
display: grid;
|
102
|
-
grid-template-columns: max-content auto; }
|
103
|
-
dl dt p, dl dd p {
|
104
|
-
margin-top: 0; }
|
105
|
-
dl dt {
|
106
|
-
grid-column-start: 1; }
|
107
|
-
dl dd {
|
108
|
-
grid-column-start: 2; }
|
109
|
-
|
110
|
-
b, strong {
|
111
|
-
font-weight: bold; }
|
112
|
-
|
113
|
-
div.document-stage-band, div.document-type-band {
|
114
|
-
background-color: #333333; }
|
115
|
-
|
116
|
-
a.FootnoteRef + a.FootnoteRef:before {
|
117
|
-
content: ", ";
|
118
|
-
vertical-align: super; }
|
119
|
-
|
120
|
-
.addition {
|
121
|
-
color: blue; }
|
122
|
-
|
123
|
-
.deletion {
|
124
|
-
color: red;
|
125
|
-
text-decoration: line-through; }
|
126
|
-
|
127
|
-
#standard-band {
|
128
|
-
background-color: #0AC442; }
|
129
|
-
|
130
|
-
#standard {
|
131
|
-
border-bottom: solid 3px #0AC442; }
|
132
|
-
|
133
|
-
#directive-band {
|
134
|
-
background-color: #540D6E; }
|
135
|
-
|
136
|
-
#directive {
|
137
|
-
border-bottom: solid 3px #540D6E; }
|
138
|
-
|
139
|
-
#guide-band {
|
140
|
-
background-color: #D183C9; }
|
141
|
-
|
142
|
-
#guide {
|
143
|
-
border-bottom: solid 3px #D183C9; }
|
144
|
-
|
145
|
-
#specification-band {
|
146
|
-
background-color: #65AFFF; }
|
147
|
-
|
148
|
-
#specification {
|
149
|
-
border-bottom: solid 3px #65AFFF; }
|
150
|
-
|
151
|
-
#report-band {
|
152
|
-
background-color: #3A405A; }
|
153
|
-
|
154
|
-
#report {
|
155
|
-
border-bottom: solid 3px #3A405A; }
|
156
|
-
|
157
|
-
#amendment-band {
|
158
|
-
background-color: #F26430; }
|
159
|
-
|
160
|
-
#amendment {
|
161
|
-
border-bottom: solid 3px #F26430; }
|
162
|
-
|
163
|
-
#corrigendum-band {
|
164
|
-
background-color: #C84630; }
|
165
|
-
|
166
|
-
#corrigendum {
|
167
|
-
border-bottom: solid 3px #C84630; }
|
168
|
-
|
169
|
-
#administrative-band {
|
170
|
-
background-color: #BFAE48; }
|
171
|
-
|
172
|
-
#administrative {
|
173
|
-
border-bottom: solid 3px #BFAE48; }
|
174
|
-
|
175
|
-
#advisory-band {
|
176
|
-
background-color: #BD9391; }
|
177
|
-
|
178
|
-
#advisory {
|
179
|
-
border-bottom: solid 3px #BD9391; }
|
180
|
-
|
181
|
-
#proposal-band {
|
182
|
-
background-color: #39A0ED; }
|
183
|
-
|
184
|
-
#proposal {
|
185
|
-
border-bottom: solid 3px #39A0ED; }
|
186
|
-
|
187
|
-
#working-draft-band {
|
188
|
-
background-color: #2D7393; }
|
189
|
-
|
190
|
-
#working-draft {
|
191
|
-
border-bottom: solid 3px #2D7393; }
|
192
|
-
|
193
|
-
#committee-draft-band {
|
194
|
-
background-color: #2A6B7C; }
|
195
|
-
|
196
|
-
#committee-draft {
|
197
|
-
border-bottom: solid 3px #2A6B7C; }
|
198
|
-
|
199
|
-
#draft-standard-band {
|
200
|
-
background-color: #1C7F7A; }
|
201
|
-
|
202
|
-
#draft-standard {
|
203
|
-
border-bottom: solid 3px #1C7F7A; }
|
204
|
-
|
205
|
-
#final-draft-band {
|
206
|
-
background-color: #53C170; }
|
207
|
-
|
208
|
-
#final-draft {
|
209
|
-
border-bottom: solid 3px #53C170; }
|
210
|
-
|
211
|
-
#published-band {
|
212
|
-
background-color: #069E2D; }
|
213
|
-
|
214
|
-
#published {
|
215
|
-
border-bottom: solid 3px #069E2D; }
|
216
|
-
|
217
|
-
#withdrawn-band {
|
218
|
-
background-color: #004E64; }
|
219
|
-
|
220
|
-
#withdrawn {
|
221
|
-
border-bottom: solid 3px #004E64; }
|
222
|
-
|
223
|
-
#cancelled-band {
|
224
|
-
background-color: #2E382E; }
|
225
|
-
|
226
|
-
#cancelled {
|
227
|
-
border-bottom: solid 3px #2E382E; }
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,47 +0,0 @@
|
|
1
|
-
div.table_container {
|
2
|
-
margin-bottom: 14pt; }
|
3
|
-
|
4
|
-
ol {
|
5
|
-
margin-bottom: 0cm; }
|
6
|
-
|
7
|
-
ul {
|
8
|
-
margin-bottom: 0cm; }
|
9
|
-
|
10
|
-
table.MsoISOTable tr {
|
11
|
-
page-break-inside: avoid; }
|
12
|
-
|
13
|
-
td {
|
14
|
-
page-break-inside: avoid; }
|
15
|
-
|
16
|
-
tr {
|
17
|
-
page-break-after: avoid; }
|
18
|
-
|
19
|
-
table.MsoISOTableBig tr {
|
20
|
-
page-break-inside: auto; }
|
21
|
-
|
22
|
-
table.MsoISOTableBig td {
|
23
|
-
page-break-inside: auto; }
|
24
|
-
|
25
|
-
span.stem {
|
26
|
-
font-family: "Cambria Math",serif;
|
27
|
-
mso-ascii-font-family: "Cambria Math";
|
28
|
-
font-style: italic; }
|
29
|
-
|
30
|
-
dt {
|
31
|
-
page-break-inside: avoid;
|
32
|
-
page-break-after: avoid; }
|
33
|
-
|
34
|
-
br.section {
|
35
|
-
page-break-before: always;
|
36
|
-
mso-break-type: section-break; }
|
37
|
-
|
38
|
-
br.pagebreak {
|
39
|
-
page-break-before: always;
|
40
|
-
mso-special-character: line-break; }
|
41
|
-
|
42
|
-
span.addition {
|
43
|
-
color: blue; }
|
44
|
-
|
45
|
-
span.deletion {
|
46
|
-
color: red;
|
47
|
-
text-decoration: line-through; }
|
File without changes
|
@@ -1,125 +0,0 @@
|
|
1
|
-
html, body, div, span, applet, object, iframe,
|
2
|
-
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
3
|
-
a, abbr, acronym, address, big, cite, code,
|
4
|
-
del, dfn, em, img, ins, kbd, q, s, samp,
|
5
|
-
small, strike, strong, sub, sup, tt, var,
|
6
|
-
b, u, i, center,
|
7
|
-
ol, ul, li,
|
8
|
-
fieldset, form, label, legend,
|
9
|
-
table, caption, tbody, tfoot, thead, tr, th, td,
|
10
|
-
article, aside, canvas, details, embed,
|
11
|
-
figure, figcaption, footer, header, hgroup,
|
12
|
-
menu, output, ruby, section, summary,
|
13
|
-
time, mark, audio, video {
|
14
|
-
margin: 0;
|
15
|
-
padding: 0; }
|
16
|
-
|
17
|
-
html, body, div, span, applet, object, iframe,
|
18
|
-
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
19
|
-
a, abbr, acronym, address, big, cite, code,
|
20
|
-
del, dfn, em, img, ins, kbd, q, s, samp,
|
21
|
-
small, strike, strong, sub, sup, tt, var,
|
22
|
-
b, u, i, center,
|
23
|
-
dl, dt, dd, ol, ul, li,
|
24
|
-
fieldset, form, label, legend,
|
25
|
-
table, caption, tbody, tfoot, thead, tr, th, td,
|
26
|
-
article, aside, canvas, details, embed,
|
27
|
-
figure, figcaption, footer, header, hgroup,
|
28
|
-
menu, nav, output, ruby, section, summary,
|
29
|
-
time, mark, audio, video {
|
30
|
-
border: 0;
|
31
|
-
font-size: 100%; }
|
32
|
-
|
33
|
-
html, body, div, span, applet, object, iframe,
|
34
|
-
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
35
|
-
a, abbr, acronym, address, big, cite, code,
|
36
|
-
del, dfn, em, img, ins, kbd, q, s, samp,
|
37
|
-
small, strike, strong, tt, var,
|
38
|
-
b, u, i, center,
|
39
|
-
dl, dd, ol, ul, li,
|
40
|
-
fieldset, form, label, legend,
|
41
|
-
table, caption, tbody, tfoot, thead, tr, th, td,
|
42
|
-
article, aside, canvas, details, embed,
|
43
|
-
figure, figcaption, footer, header, hgroup,
|
44
|
-
menu, nav, output, ruby, section, summary,
|
45
|
-
time, mark, audio, video {
|
46
|
-
vertical-align: baseline; }
|
47
|
-
|
48
|
-
html, body, div, span, applet, object, iframe,
|
49
|
-
p, blockquote,
|
50
|
-
a, abbr, acronym, address, big, cite,
|
51
|
-
del, dfn, em, img, ins, q, s,
|
52
|
-
small, strike, strong, sub, sup, var,
|
53
|
-
b, u, i, center,
|
54
|
-
dl, dt, dd, ol, ul, li,
|
55
|
-
fieldset, form, label, legend,
|
56
|
-
table, caption, tbody, tfoot, thead, tr, th, td,
|
57
|
-
article, aside, canvas, details, embed,
|
58
|
-
figure, figcaption, footer, header, hgroup,
|
59
|
-
menu, nav, output, ruby, section, summary,
|
60
|
-
time, mark, audio, video {
|
61
|
-
font-family: {{bodyfont}}; }
|
62
|
-
|
63
|
-
code, pre, tt, kbd, samp {
|
64
|
-
font-family: {{monospacefont}};
|
65
|
-
font-variant-ligatures: none; }
|
66
|
-
|
67
|
-
code *, pre *, tt *, kbd *, samp * {
|
68
|
-
font-family: {{monospacefont}} !important;
|
69
|
-
font-variant-ligatures: none; }
|
70
|
-
|
71
|
-
p code, dt code, li code, label code, legend code, caption code, th code, td code,
|
72
|
-
p tt, dt tt, li tt, label tt, legend tt, caption tt, th tt, td tt,
|
73
|
-
p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
|
74
|
-
p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
|
75
|
-
font-size: {{monospacefontsize}}; }
|
76
|
-
|
77
|
-
article, aside, details, figcaption, figure,
|
78
|
-
footer, header, hgroup, menu, nav, section {
|
79
|
-
display: block; }
|
80
|
-
|
81
|
-
table {
|
82
|
-
border-collapse: collapse;
|
83
|
-
border-spacing: 0; }
|
84
|
-
|
85
|
-
h1, h2, h3, h4, h5, h6 {
|
86
|
-
font-family: {{headerfont}}; }
|
87
|
-
|
88
|
-
.h1, .h2, .h3, .h4, .h5, .h6 {
|
89
|
-
font-family: {{headerfont}}; }
|
90
|
-
|
91
|
-
blockquote, q {
|
92
|
-
quotes: none; }
|
93
|
-
blockquote:before, blockquote:after, q:before, q:after {
|
94
|
-
content: '';
|
95
|
-
content: none; }
|
96
|
-
|
97
|
-
.h2Annex {
|
98
|
-
font-family: {{headerfont}}; }
|
99
|
-
|
100
|
-
dl {
|
101
|
-
display: grid;
|
102
|
-
grid-template-columns: max-content auto; }
|
103
|
-
dl dt p, dl dd p {
|
104
|
-
margin-top: 0; }
|
105
|
-
dl dt {
|
106
|
-
grid-column-start: 1; }
|
107
|
-
dl dd {
|
108
|
-
grid-column-start: 2; }
|
109
|
-
|
110
|
-
b, strong {
|
111
|
-
font-weight: bold; }
|
112
|
-
|
113
|
-
div.document-stage-band, div.document-type-band {
|
114
|
-
background-color: #333333; }
|
115
|
-
|
116
|
-
a.FootnoteRef + a.FootnoteRef:before {
|
117
|
-
content: ", ";
|
118
|
-
vertical-align: super; }
|
119
|
-
|
120
|
-
.addition {
|
121
|
-
color: blue; }
|
122
|
-
|
123
|
-
.deletion {
|
124
|
-
color: red;
|
125
|
-
text-decoration: line-through; }
|
File without changes
|