isodoc 1.1.0 → 1.1.3.pre.alpha3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +6 -12
- data/.github/workflows/ubuntu.yml +18 -20
- data/.github/workflows/windows.yml +6 -12
- data/Rakefile +3 -1
- data/isodoc.gemspec +1 -1
- data/lib/isodoc/base_style/all.css +207 -0
- 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 +34 -0
- data/lib/isodoc/base_style/metanorma_word.scss +0 -1
- data/lib/isodoc/base_style/nav.css +0 -0
- data/lib/isodoc/base_style/reset.css +105 -0
- data/lib/isodoc/base_style/reset.scss +3 -3
- data/lib/isodoc/base_style/typography.css +0 -0
- data/lib/isodoc/convert.rb +106 -53
- data/lib/isodoc/function/references.rb +28 -17
- data/lib/isodoc/function/to_word_html.rb +2 -2
- data/lib/isodoc/function/utils.rb +57 -51
- data/lib/isodoc/gem_tasks.rb +133 -0
- data/lib/isodoc/metadata.rb +69 -63
- data/lib/isodoc/sassc_importer.rb +11 -0
- data/lib/isodoc/version.rb +1 -1
- data/lib/isodoc/xref/xref_sect_gen.rb +3 -7
- data/spec/assets/{html.css → html.scss} +0 -0
- data/spec/isodoc/footnotes_spec.rb +2 -2
- data/spec/isodoc/postproc_spec.rb +1319 -1345
- data/spec/isodoc/ref_spec.rb +1 -1
- data/spec/isodoc/section_spec.rb +52 -0
- metadata +28 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28b247461fa24c079dcb4d026b6384e803f83d11cba292464d8972ce3df6b562
|
4
|
+
data.tar.gz: 97e778665b9ba5712c4fd8df9f6dae55c650ce95857854271bb98b1c1bdf4b81
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f59bba90a9f52c65bf7457cbd82de139101a917953b8db65357a63ad130843704bbf83be142fd9abdcc5f76e6586a1d1d2ded46531fe18b5e1edb7f201eb071d
|
7
|
+
data.tar.gz: 8816a32293fdc6f3d82ade76fb5a76d83aa9e0c3eb93df6a146cd1643cda2e27d671cbbcc9db54e890eab9eb37c020d1fc264ef681e8f9600a8776ae9d1a13c8
|
data/.github/workflows/macos.yml
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# Auto-generated by Cimas: Do not edit it manually!
|
2
|
+
# See https://github.com/metanorma/cimas
|
1
3
|
name: macos
|
2
4
|
|
3
5
|
on:
|
@@ -27,22 +29,14 @@ jobs:
|
|
27
29
|
uses: actions/setup-ruby@v1
|
28
30
|
with:
|
29
31
|
ruby-version: ${{ matrix.ruby }}
|
30
|
-
architecture: 'x64'
|
31
|
-
- name: Update gems
|
32
|
-
run: |
|
33
|
-
sudo gem install bundler --force
|
34
|
-
bundle install --jobs 4 --retry 3
|
35
|
-
- name: Use Node
|
36
|
-
uses: actions/setup-node@v1
|
37
|
-
with:
|
38
|
-
node-version: '12'
|
39
|
-
- name: Install Puppeteer
|
40
|
-
run: |
|
41
|
-
npm install -g puppeteer@3.0.1
|
42
32
|
- name: Install Inkscape
|
43
33
|
run: |
|
44
34
|
brew cask install inkscape
|
45
35
|
inkscape --version
|
36
|
+
- name: Update gems
|
37
|
+
run: |
|
38
|
+
sudo gem install bundler --force
|
39
|
+
bundle install --jobs 4 --retry 3
|
46
40
|
- name: Run specs
|
47
41
|
run: |
|
48
42
|
bundle exec rake
|
@@ -1,8 +1,12 @@
|
|
1
|
+
# Auto-generated by Cimas: Do not edit it manually!
|
2
|
+
# See https://github.com/metanorma/cimas
|
1
3
|
name: ubuntu
|
2
4
|
|
3
5
|
on:
|
4
6
|
push:
|
5
7
|
branches: [ master ]
|
8
|
+
tags:
|
9
|
+
- '*'
|
6
10
|
pull_request:
|
7
11
|
paths-ignore:
|
8
12
|
- .github/workflows/macos.yml
|
@@ -27,38 +31,32 @@ jobs:
|
|
27
31
|
uses: actions/setup-ruby@v1
|
28
32
|
with:
|
29
33
|
ruby-version: ${{ matrix.ruby }}
|
30
|
-
architecture: 'x64'
|
31
|
-
- name: Update gems
|
32
|
-
run: |
|
33
|
-
gem install bundler
|
34
|
-
bundle install --jobs 4 --retry 3
|
35
|
-
- name: Use Node
|
36
|
-
uses: actions/setup-node@v1
|
37
|
-
with:
|
38
|
-
node-version: '12'
|
39
|
-
- name: Install Puppeteer
|
40
|
-
run: |
|
41
|
-
sudo apt-get update
|
42
|
-
sudo apt-get install libgbm1
|
43
|
-
npm install -g puppeteer@3.0.1
|
44
34
|
- name: Install Inkscape
|
45
35
|
run: |
|
46
36
|
sudo add-apt-repository ppa:inkscape.dev/stable
|
47
37
|
sudo apt update
|
48
38
|
sudo apt install inkscape
|
49
39
|
inkscape --version
|
40
|
+
- name: Update gems
|
41
|
+
run: |
|
42
|
+
gem install bundler
|
43
|
+
bundle install --jobs 4 --retry 3
|
50
44
|
- name: Run specs
|
51
45
|
run: |
|
52
46
|
bundle exec rake
|
53
|
-
- name: Trigger
|
54
|
-
if:
|
47
|
+
- name: Trigger repositories
|
48
|
+
if: matrix.ruby == '2.6'
|
55
49
|
env:
|
56
|
-
GH_USERNAME:
|
57
|
-
GH_ACCESS_TOKEN: ${{ secrets.
|
50
|
+
GH_USERNAME: metanorma-ci
|
51
|
+
GH_ACCESS_TOKEN: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
|
58
52
|
run: |
|
59
53
|
curl -LO --retry 3 https://raw.githubusercontent.com/metanorma/metanorma-build-scripts/master/trigger-gh-actions.sh
|
60
54
|
[[ -f ".github/workflows/dependent_repos.env" ]] && source .github/workflows/dependent_repos.env
|
61
|
-
|
55
|
+
CLIENT_PAYLOAD=$(cat <<EOF
|
56
|
+
"{ "ref": "${GITHUB_REF}", "repo": "${GITHUB_REPOSITORY}" }"
|
57
|
+
EOF
|
58
|
+
)
|
59
|
+
for repo in $REPOS
|
62
60
|
do
|
63
|
-
sh trigger-gh-actions.sh $ORGANISATION $repo $GH_USERNAME $GH_ACCESS_TOKEN $GITHUB_REPOSITORY
|
61
|
+
sh trigger-gh-actions.sh $ORGANISATION $repo $GH_USERNAME $GH_ACCESS_TOKEN $GITHUB_REPOSITORY "$CLIENT_PAYLOAD"
|
64
62
|
done
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# Auto-generated by Cimas: Do not edit it manually!
|
2
|
+
# See https://github.com/metanorma/cimas
|
1
3
|
name: windows
|
2
4
|
|
3
5
|
on:
|
@@ -27,24 +29,16 @@ jobs:
|
|
27
29
|
uses: actions/setup-ruby@v1
|
28
30
|
with:
|
29
31
|
ruby-version: ${{ matrix.ruby }}
|
30
|
-
|
32
|
+
- name: Install Inkscape
|
33
|
+
run: |
|
34
|
+
choco install --no-progress -y inkscape
|
35
|
+
inkscape --version
|
31
36
|
- name: Update gems
|
32
37
|
shell: pwsh
|
33
38
|
run: |
|
34
39
|
gem install bundler
|
35
40
|
bundle config --local path vendor/bundle
|
36
41
|
bundle install --jobs 4 --retry 3
|
37
|
-
- name: Use Node
|
38
|
-
uses: actions/setup-node@v1
|
39
|
-
with:
|
40
|
-
node-version: '12'
|
41
|
-
- name: Install Puppeteer
|
42
|
-
run: |
|
43
|
-
npm install -g puppeteer@3.0.1
|
44
|
-
- name: Install Inkscape
|
45
|
-
run: |
|
46
|
-
choco install --no-progress -y inkscape
|
47
|
-
inkscape --version
|
48
42
|
- name: Run specs
|
49
43
|
run: |
|
50
44
|
bundle exec rake
|
data/Rakefile
CHANGED
data/isodoc.gemspec
CHANGED
@@ -36,11 +36,11 @@ Gem::Specification.new do |spec|
|
|
36
36
|
spec.add_dependency "html2doc", "~> 1.0.0"
|
37
37
|
spec.add_dependency "liquid"
|
38
38
|
spec.add_dependency "roman-numerals"
|
39
|
-
spec.add_dependency "sassc", "~> 2.4.0"
|
40
39
|
spec.add_dependency "metanorma", "~> 1.1.0"
|
41
40
|
spec.add_dependency "rake", "~> 12.0"
|
42
41
|
|
43
42
|
spec.add_development_dependency "byebug", "~> 9.1"
|
43
|
+
spec.add_development_dependency "sassc", "~> 2.4.0"
|
44
44
|
spec.add_development_dependency "equivalent-xml", "~> 0.6"
|
45
45
|
spec.add_development_dependency "guard", "~> 2.14"
|
46
46
|
spec.add_development_dependency "guard-rspec", "~> 4.7"
|
@@ -0,0 +1,207 @@
|
|
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, nav, 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
|
+
article, aside, details, figcaption, figure,
|
72
|
+
footer, header, hgroup, menu, nav, section {
|
73
|
+
display: block; }
|
74
|
+
|
75
|
+
table {
|
76
|
+
border-collapse: collapse;
|
77
|
+
border-spacing: 0; }
|
78
|
+
|
79
|
+
h1, h2, h3, h4, h5, h6 {
|
80
|
+
font-family: {{headerfont}}; }
|
81
|
+
|
82
|
+
blockquote, q {
|
83
|
+
quotes: none; }
|
84
|
+
blockquote:before, blockquote:after, q:before, q:after {
|
85
|
+
content: '';
|
86
|
+
content: none; }
|
87
|
+
|
88
|
+
.h2Annex {
|
89
|
+
font-family: {{headerfont}}; }
|
90
|
+
|
91
|
+
dl {
|
92
|
+
display: grid;
|
93
|
+
grid-template-columns: max-content auto; }
|
94
|
+
dl dt p, dl dd p {
|
95
|
+
margin-top: 0; }
|
96
|
+
dl dt {
|
97
|
+
grid-column-start: 1; }
|
98
|
+
dl dd {
|
99
|
+
grid-column-start: 2; }
|
100
|
+
|
101
|
+
b, strong {
|
102
|
+
font-weight: bold; }
|
103
|
+
|
104
|
+
div.document-stage-band, div.document-type-band {
|
105
|
+
background-color: #333333; }
|
106
|
+
|
107
|
+
#standard-band {
|
108
|
+
background-color: #0AC442; }
|
109
|
+
|
110
|
+
#standard {
|
111
|
+
border-bottom: solid 3px #0AC442; }
|
112
|
+
|
113
|
+
#directive-band {
|
114
|
+
background-color: #540D6E; }
|
115
|
+
|
116
|
+
#directive {
|
117
|
+
border-bottom: solid 3px #540D6E; }
|
118
|
+
|
119
|
+
#guide-band {
|
120
|
+
background-color: #D183C9; }
|
121
|
+
|
122
|
+
#guide {
|
123
|
+
border-bottom: solid 3px #D183C9; }
|
124
|
+
|
125
|
+
#specification-band {
|
126
|
+
background-color: #65AFFF; }
|
127
|
+
|
128
|
+
#specification {
|
129
|
+
border-bottom: solid 3px #65AFFF; }
|
130
|
+
|
131
|
+
#report-band {
|
132
|
+
background-color: #3A405A; }
|
133
|
+
|
134
|
+
#report {
|
135
|
+
border-bottom: solid 3px #3A405A; }
|
136
|
+
|
137
|
+
#amendment-band {
|
138
|
+
background-color: #F26430; }
|
139
|
+
|
140
|
+
#amendment {
|
141
|
+
border-bottom: solid 3px #F26430; }
|
142
|
+
|
143
|
+
#corrigendum-band {
|
144
|
+
background-color: #C84630; }
|
145
|
+
|
146
|
+
#corrigendum {
|
147
|
+
border-bottom: solid 3px #C84630; }
|
148
|
+
|
149
|
+
#administrative-band {
|
150
|
+
background-color: #BFAE48; }
|
151
|
+
|
152
|
+
#administrative {
|
153
|
+
border-bottom: solid 3px #BFAE48; }
|
154
|
+
|
155
|
+
#advisory-band {
|
156
|
+
background-color: #BD9391; }
|
157
|
+
|
158
|
+
#advisory {
|
159
|
+
border-bottom: solid 3px #BD9391; }
|
160
|
+
|
161
|
+
#proposal-band {
|
162
|
+
background-color: #39A0ED; }
|
163
|
+
|
164
|
+
#proposal {
|
165
|
+
border-bottom: solid 3px #39A0ED; }
|
166
|
+
|
167
|
+
#working-draft-band {
|
168
|
+
background-color: #2D7393; }
|
169
|
+
|
170
|
+
#working-draft {
|
171
|
+
border-bottom: solid 3px #2D7393; }
|
172
|
+
|
173
|
+
#committee-draft-band {
|
174
|
+
background-color: #2A6B7C; }
|
175
|
+
|
176
|
+
#committee-draft {
|
177
|
+
border-bottom: solid 3px #2A6B7C; }
|
178
|
+
|
179
|
+
#draft-standard-band {
|
180
|
+
background-color: #1C7F7A; }
|
181
|
+
|
182
|
+
#draft-standard {
|
183
|
+
border-bottom: solid 3px #1C7F7A; }
|
184
|
+
|
185
|
+
#final-draft-band {
|
186
|
+
background-color: #53C170; }
|
187
|
+
|
188
|
+
#final-draft {
|
189
|
+
border-bottom: solid 3px #53C170; }
|
190
|
+
|
191
|
+
#published-band {
|
192
|
+
background-color: #069E2D; }
|
193
|
+
|
194
|
+
#published {
|
195
|
+
border-bottom: solid 3px #069E2D; }
|
196
|
+
|
197
|
+
#withdrawn-band {
|
198
|
+
background-color: #004E64; }
|
199
|
+
|
200
|
+
#withdrawn {
|
201
|
+
border-bottom: solid 3px #004E64; }
|
202
|
+
|
203
|
+
#cancelled-band {
|
204
|
+
background-color: #2E382E; }
|
205
|
+
|
206
|
+
#cancelled {
|
207
|
+
border-bottom: solid 3px #2E382E; }
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,34 @@
|
|
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
|
+
span.stem {
|
20
|
+
font-family: "Cambria Math",serif;
|
21
|
+
mso-ascii-font-family: "Cambria Math";
|
22
|
+
font-style: italic; }
|
23
|
+
|
24
|
+
dt {
|
25
|
+
page-break-inside: avoid;
|
26
|
+
page-break-after: avoid; }
|
27
|
+
|
28
|
+
br.section {
|
29
|
+
page-break-before: always;
|
30
|
+
mso-break-type: section-break; }
|
31
|
+
|
32
|
+
br.pagebreak {
|
33
|
+
page-break-before: always;
|
34
|
+
mso-special-character: line-break; }
|
File without changes
|
@@ -0,0 +1,105 @@
|
|
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, nav, 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
|
+
article, aside, details, figcaption, figure,
|
72
|
+
footer, header, hgroup, menu, nav, section {
|
73
|
+
display: block; }
|
74
|
+
|
75
|
+
table {
|
76
|
+
border-collapse: collapse;
|
77
|
+
border-spacing: 0; }
|
78
|
+
|
79
|
+
h1, h2, h3, h4, h5, h6 {
|
80
|
+
font-family: {{headerfont}}; }
|
81
|
+
|
82
|
+
blockquote, q {
|
83
|
+
quotes: none; }
|
84
|
+
blockquote:before, blockquote:after, q:before, q:after {
|
85
|
+
content: '';
|
86
|
+
content: none; }
|
87
|
+
|
88
|
+
.h2Annex {
|
89
|
+
font-family: {{headerfont}}; }
|
90
|
+
|
91
|
+
dl {
|
92
|
+
display: grid;
|
93
|
+
grid-template-columns: max-content auto; }
|
94
|
+
dl dt p, dl dd p {
|
95
|
+
margin-top: 0; }
|
96
|
+
dl dt {
|
97
|
+
grid-column-start: 1; }
|
98
|
+
dl dd {
|
99
|
+
grid-column-start: 2; }
|
100
|
+
|
101
|
+
b, strong {
|
102
|
+
font-weight: bold; }
|
103
|
+
|
104
|
+
div.document-stage-band, div.document-type-band {
|
105
|
+
background-color: #333333; }
|