metanorma-iho 0.4.2 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af4e8cb7a25640917f4cabfe9c4a7c0b69c75ce7e75f5398dcab4955fc2a2c5c
4
- data.tar.gz: 4fcd58bad2e1d8772296db57468243f3238a64d779181be87c97f4d8b3215a3b
3
+ metadata.gz: 4082060ac60fbd1e8eba4fcf79e0591b0e41b8efe8977c1ace2a00ed3c37d1e5
4
+ data.tar.gz: 58176a042041336c07803e46439ebc0ef095c84353db29847669aea5ceeeedb6
5
5
  SHA512:
6
- metadata.gz: f06a1aca9d0dae8f905f0c9b0234a641a8ba8109be2507296be9f9de75388537b36a66f7ec6737038a371f66e6beb84333c0effc3478c205ca5196059b560cae
7
- data.tar.gz: 4d7dfb29637ecf66aec36f7a7606b0ef302b58b78a7e728e002c170c825e9155b516df6f61f4ba6950935a7581ca2b5483e182d881b4b3f1a128d551cfc06bf3
6
+ metadata.gz: '048b316ef1689e16aa924af0b3b868c725dc64c3d36142c74adecd5c01a4a8c696250d9fbe4f3dfdfc835bd3f8b8185a9d9c20aa5bb2bed4b23c51791dca4b19'
7
+ data.tar.gz: c55b5acea52a9d45aa69eb970ea689e8375b5241a4c05486d020e44628a4ae70b8e8ae9c09e96ab801078cb5925e6aabef7427ce442f603751fee092f456b27b
@@ -10,34 +10,6 @@ on:
10
10
 
11
11
  jobs:
12
12
  rake:
13
- name: Test on Ruby ${{ matrix.ruby }} ${{ matrix.os }}
14
- runs-on: ${{ matrix.os }}
15
- continue-on-error: ${{ matrix.experimental }}
16
- strategy:
17
- fail-fast: false
18
- matrix:
19
- ruby: [ '3.0', '2.7', '2.6', '2.5' ]
20
- os: [ ubuntu-latest, windows-latest, macos-latest ]
21
- experimental: [ false ]
22
- steps:
23
- - uses: actions/checkout@master
24
-
25
- - uses: ruby/setup-ruby@v1
26
- with:
27
- ruby-version: ${{ matrix.ruby }}
28
- bundler-cache: true
29
-
30
- - uses: metanorma/metanorma-build-scripts/plantuml-setup-action@master
31
-
32
- - run: bundle exec rake
33
-
34
- tests-passed:
35
- needs: rake
36
- runs-on: ubuntu-latest
37
- steps:
38
- - uses: peter-evans/repository-dispatch@v1
39
- with:
40
- token: ${{ secrets.METANORMA_CI_PAT_TOKEN || secrets.GITHUB_TOKEN }}
41
- repository: ${{ github.repository }}
42
- event-type: tests-passed
43
- client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'
13
+ uses: metanorma/metanorma-build-scripts/.github/workflows/generic-rake.yml@main
14
+ secrets:
15
+ pat_token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
data/.gitignore CHANGED
@@ -1 +1,12 @@
1
1
  .rubocop-https--*
2
+
3
+ /.rspec_status
4
+ /Gemfile.devel
5
+ /Gemfile.lock
6
+ /coverage/
7
+ /test.doc
8
+ /test.err
9
+ /test.html
10
+ /test.pdf
11
+ /test.presentation.xml
12
+ /test_*_htmlimages/
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "asciidoctor/rsd"
4
+ require "metanorma/iho"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -27,7 +27,7 @@ module IsoDoc
27
27
  xml.span do |s|
28
28
  node&.children&.each { |x| parse(x, s) }
29
29
  end
30
- end.join("")
30
+ end.join
31
31
  end
32
32
 
33
33
  def multiplenames_and(names)
@@ -56,13 +56,15 @@ module IsoDoc
56
56
  def inline_bibitem_ref_code(bib)
57
57
  id = bib.at(ns("./docidentifier[not(@type = 'DOI' or "\
58
58
  "@type = 'metanorma' or @type = 'ISSN' or "\
59
- "@type = 'ISBN' or @type = 'rfc-anchor')]"))
60
- id ||= bib.at(ns("./docidentifier[not(@type = 'metanorma')]"))
61
- return [nil, id, nil] if id
59
+ "@type = 'ISBN' or @type = 'rfc-anchor' or "\
60
+ "@type = 'metanorma-ordinal')]"))
61
+ id ||= bib.at(ns("./docidentifier[not(@type = 'metanorma' or "\
62
+ "@type = 'metanorma-ordinal')]"))
63
+ return [nil, id, nil, nil] if id
62
64
 
63
65
  id = Nokogiri::XML::Node.new("docidentifier", bib.document)
64
66
  id << "(NO ID)"
65
- [nil, id, nil]
67
+ [nil, id, nil, nil]
66
68
  end
67
69
 
68
70
  def extract_edition(bib)
@@ -101,9 +103,9 @@ module IsoDoc
101
103
  c = p.at(ns("./completename")) and return c.text
102
104
  s = p&.at(ns("./surname"))&.text or return
103
105
  i = p.xpath(ns("./initial")) and
104
- front = i.map { |e| e.text.gsub(/[^[:upper:]]/, "") }.join("")
106
+ front = i.map { |e| e.text.gsub(/[^[:upper:]]/, "") }.join
105
107
  i.empty? and f = p.xpath(ns("./forename")) and
106
- front = f.map { |e| e.text[0].upcase }.join("")
108
+ front = f.map { |e| e.text[0].upcase }.join
107
109
  front ? "#{s} #{front}" : s
108
110
  end
109
111
 
@@ -117,10 +119,10 @@ module IsoDoc
117
119
  ftitle&.children&.each { |n| parse(n, out) }
118
120
  else
119
121
  id = render_identifier(inline_bibitem_ref_code(bib))
120
- out << id[1] if id[1]
122
+ out << id[:sdo] if id[:sdo]
121
123
  ed = extract_edition(bib) if iho?(bib)
122
124
  out << " edition #{ed}" if ed
123
- out << ": " if id[1] || ed
125
+ out << ": " if id[:sdo] || ed
124
126
  iso_title(bib)&.children&.each { |n| parse(n, out) }
125
127
  out << ", "
126
128
  author = extract_author(bib)
@@ -75,6 +75,12 @@ code *, pre *, tt *, kbd *, samp * {
75
75
  font-family: {{monospacefont}} !important;
76
76
  font-variant-ligatures: none; }
77
77
 
78
+ p code, dt code, li code, label code, legend code, caption code, th code, td code,
79
+ p tt, dt tt, li tt, label tt, legend tt, caption tt, th tt, td tt,
80
+ p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
81
+ p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
82
+ font-size: {{monospacefontsize}}; }
83
+
78
84
  article, aside, details, figcaption, figure,
79
85
  footer, header, hgroup, menu, nav, section {
80
86
  display: block; }
@@ -86,6 +92,9 @@ table {
86
92
  h1, h2, h3, h4, h5, h6 {
87
93
  font-family: {{headerfont}}; }
88
94
 
95
+ .h1, .h2, .h3, .h4, .h5, .h6 {
96
+ font-family: {{headerfont}}; }
97
+
89
98
  blockquote, q {
90
99
  quotes: none; }
91
100
  blockquote:before, blockquote:after, q:before, q:after {
@@ -537,27 +546,28 @@ h2,
537
546
  h3,
538
547
  h4,
539
548
  h5,
540
- h6 {
549
+ h6,
550
+ .h1, .h2, .h3, .h4, .h5, .h6 {
541
551
  font-family: {{headerfont}};
542
552
  color: #05164D;
543
553
  font-weight: 300;
544
554
  margin-top: 1.6em;
545
555
  margin-bottom: 0.3em; }
546
556
 
547
- h1 {
557
+ h1, .h1 {
548
558
  font-size: 1.6em;
549
559
  text-transform: uppercase;
550
560
  margin-top: 2em; }
551
561
 
552
- h1#content {
562
+ h1#content, #content.h1 {
553
563
  margin-top: 2em; }
554
564
 
555
- h2 {
565
+ h2, .h2 {
556
566
  margin-top: 1.3em;
557
567
  font-size: 1.3em;
558
568
  font-weight: 400; }
559
569
 
560
- h3 {
570
+ h3, .h3 {
561
571
  margin-top: 1.1em;
562
572
  font-size: 1.1em;
563
573
  font-weight: 100; }
@@ -565,7 +575,9 @@ h3 {
565
575
  .TermNum,
566
576
  .Terms,
567
577
  .AltTerms {
568
- color: #05164D;
578
+ color: #05164D; }
579
+
580
+ .TermNum {
569
581
  font-weight: 100; }
570
582
 
571
583
  h2.TermNum {
@@ -840,7 +852,7 @@ p {
840
852
  margin-top: 1em;
841
853
  margin-bottom: 1em; }
842
854
 
843
- h2 p {
855
+ h2 p, .h2 p {
844
856
  display: inline; }
845
857
 
846
858
  /*
@@ -973,7 +985,8 @@ To top button
973
985
  h1,
974
986
  h2,
975
987
  h3,
976
- h4 {
988
+ h4,
989
+ .h1, .h2, .h3, .h4 {
977
990
  page-break-after: avoid;
978
991
  margin-top: 1.2em; }
979
992
  .note,
@@ -996,15 +1009,15 @@ To top button
996
1009
  background-color: white; }
997
1010
  .container {
998
1011
  padding-left: 0; }
999
- h1.content {
1012
+ h1.content, .h1.content {
1000
1013
  margin-top: 2em;
1001
1014
  line-height: 2.5em; }
1002
- h1 {
1015
+ h1, .h1 {
1003
1016
  font-size: 1.5em;
1004
1017
  line-height: 1.5; }
1005
- h2 {
1018
+ h2, .h2 {
1006
1019
  font-size: 1.2em; }
1007
- h3 {
1020
+ h3, .h3 {
1008
1021
  font-size: 1em; }
1009
1022
  .Note {
1010
1023
  background-color: #fedc5b;
@@ -203,7 +203,8 @@ h2,
203
203
  h3,
204
204
  h4,
205
205
  h5,
206
- h6 {
206
+ h6,
207
+ .h1, .h2, .h3, .h4, .h5, .h6 {
207
208
  font-family: $headerfont;
208
209
  color: #05164D;
209
210
  font-weight: 300;
@@ -211,23 +212,23 @@ h6 {
211
212
  margin-bottom: 0.3em;
212
213
  }
213
214
 
214
- h1 {
215
+ h1, .h1 {
215
216
  font-size: 1.6em;
216
217
  text-transform: uppercase;
217
218
  margin-top: 2em;
218
219
  }
219
220
 
220
- h1#content {
221
+ h1#content, .h1#content {
221
222
  margin-top: 2em;
222
223
  }
223
224
 
224
- h2 {
225
+ h2, .h2 {
225
226
  margin-top: 1.3em;
226
227
  font-size: 1.3em;
227
228
  font-weight: 400;
228
229
  }
229
230
 
230
- h3 {
231
+ h3, .h3 {
231
232
  margin-top: 1.1em;
232
233
  font-size: 1.1em;
233
234
  font-weight: 100;
@@ -237,6 +238,9 @@ h3 {
237
238
  .Terms,
238
239
  .AltTerms {
239
240
  color: #05164D;
241
+ }
242
+
243
+ .TermNum {
240
244
  font-weight: 100;
241
245
  }
242
246
 
@@ -500,7 +504,7 @@ p {
500
504
  margin-bottom: 1em;
501
505
  }
502
506
 
503
- h2 p {
507
+ h2 p, .h2 p {
504
508
  display: inline;
505
509
  }
506
510
 
@@ -678,7 +682,8 @@ To top button
678
682
  h1,
679
683
  h2,
680
684
  h3,
681
- h4 {
685
+ h4,
686
+ .h1, .h2, .h3, .h4 {
682
687
  page-break-after: avoid;
683
688
  margin-top: 1.2em;
684
689
  }
@@ -717,21 +722,21 @@ To top button
717
722
  padding-left: 0;
718
723
  }
719
724
 
720
- h1.content {
725
+ h1.content, .h1.content {
721
726
  margin-top: 2em;
722
727
  line-height: 2.5em;
723
728
  }
724
729
 
725
- h1 {
730
+ h1, .h1 {
726
731
  font-size: 1.5em;
727
732
  line-height: 1.5;
728
733
  }
729
734
 
730
- h2 {
735
+ h2, .h2 {
731
736
  font-size: 1.2em
732
737
  }
733
738
 
734
- h3 {
739
+ h3, .h3 {
735
740
  font-size: 1em;
736
741
  }
737
742
 
@@ -17,7 +17,6 @@ $('#toggle').on('click', function(){
17
17
  else {
18
18
  $('nav').show();
19
19
  $('nav').animate({ 'left': '0px' }, 'slow');
20
- $('.container').animate({ 'padding-left': '360px' }, 'slow');
21
20
  }
22
21
  });
23
22
  </script>
@@ -370,7 +370,7 @@ span.blackgraphtx {
370
370
  div.figure, p.figure {
371
371
  text-align: center; }
372
372
 
373
- h1 {
373
+ h1, .h1 {
374
374
  mso-style-priority: 1;
375
375
  mso-style-unhide: no;
376
376
  mso-style-qformat: yes;
@@ -385,8 +385,6 @@ h1 {
385
385
  line-height: 13.5pt;
386
386
  mso-pagination: widow-orphan;
387
387
  page-break-after: avoid;
388
- mso-outline-level: 1;
389
- mso-list: l1 level1 lfo6;
390
388
  mso-hyphenate: none;
391
389
  tab-stops: 20.0pt list 21.6pt left 28.0pt;
392
390
  font-size: 13.0pt;
@@ -399,6 +397,10 @@ h1 {
399
397
  mso-fareast-language: JA;
400
398
  mso-bidi-font-weight: normal; }
401
399
 
400
+ h1 {
401
+ mso-outline-level: 1;
402
+ mso-list: l1 level1 lfo6; }
403
+
402
404
  h1.Annex {
403
405
  mso-style-priority: 1;
404
406
  mso-style-unhide: no;
@@ -456,7 +458,7 @@ h1.Annex {
456
458
  mso-fareast-language: JA;
457
459
  mso-bidi-font-weight: normal; }
458
460
 
459
- h2 {
461
+ h2, .h2 {
460
462
  mso-style-priority: 2;
461
463
  mso-style-unhide: no;
462
464
  mso-style-qformat: yes;
@@ -472,8 +474,6 @@ h2 {
472
474
  line-height: 12.5pt;
473
475
  mso-pagination: widow-orphan;
474
476
  page-break-after: avoid;
475
- mso-outline-level: 2;
476
- mso-list: l1 level2 lfo6;
477
477
  mso-hyphenate: none;
478
478
  tab-stops: 27.0pt 35.0pt;
479
479
  font-size: {{normalfontsize}};
@@ -485,7 +485,11 @@ h2 {
485
485
  mso-fareast-language: JA;
486
486
  mso-bidi-font-weight: normal; }
487
487
 
488
- h3 {
488
+ h2 {
489
+ mso-outline-level: 2;
490
+ mso-list: l1 level2 lfo6; }
491
+
492
+ h3, .h3 {
489
493
  mso-style-priority: 3;
490
494
  mso-style-unhide: no;
491
495
  mso-style-qformat: yes;
@@ -501,8 +505,6 @@ h3 {
501
505
  line-height: {{normalfontsize}};
502
506
  mso-pagination: widow-orphan;
503
507
  page-break-after: avoid;
504
- mso-outline-level: 3;
505
- mso-list: l1 level3 lfo6;
506
508
  mso-hyphenate: none;
507
509
  tab-stops: list 36.0pt left 44.0pt;
508
510
  font-size: {{smallerfontsize}};
@@ -513,7 +515,11 @@ h3 {
513
515
  mso-fareast-language: JA;
514
516
  mso-bidi-font-weight: normal; }
515
517
 
516
- h4 {
518
+ h3 {
519
+ mso-outline-level: 3;
520
+ mso-list: l1 level3 lfo6; }
521
+
522
+ h4, .h4 {
517
523
  mso-style-priority: 4;
518
524
  mso-style-unhide: no;
519
525
  mso-style-qformat: yes;
@@ -529,8 +535,6 @@ h4 {
529
535
  line-height: {{normalfontsize}};
530
536
  mso-pagination: widow-orphan;
531
537
  page-break-after: avoid;
532
- mso-outline-level: 4;
533
- mso-list: l1 level4 lfo6;
534
538
  mso-hyphenate: none;
535
539
  tab-stops: 51.05pt 57.0pt 68.0pt;
536
540
  font-size: {{smallerfontsize}};
@@ -541,7 +545,11 @@ h4 {
541
545
  mso-fareast-language: JA;
542
546
  mso-bidi-font-weight: normal; }
543
547
 
544
- h5 {
548
+ h4 {
549
+ mso-outline-level: 4;
550
+ mso-list: l1 level4 lfo6; }
551
+
552
+ h5, .h5 {
545
553
  mso-style-priority: 5;
546
554
  mso-style-unhide: no;
547
555
  mso-style-qformat: yes;
@@ -557,8 +565,6 @@ h5 {
557
565
  line-height: {{normalfontsize}};
558
566
  mso-pagination: widow-orphan;
559
567
  page-break-after: avoid;
560
- mso-outline-level: 5;
561
- mso-list: l1 level5 lfo6;
562
568
  mso-hyphenate: none;
563
569
  tab-stops: 51.05pt list 54.0pt;
564
570
  font-size: {{smallerfontsize}};
@@ -569,7 +575,11 @@ h5 {
569
575
  mso-fareast-language: JA;
570
576
  mso-bidi-font-weight: normal; }
571
577
 
572
- h6 {
578
+ h5 {
579
+ mso-outline-level: 5;
580
+ mso-list: l1 level5 lfo6; }
581
+
582
+ h6, .h6 {
573
583
  mso-style-priority: 6;
574
584
  mso-style-unhide: no;
575
585
  mso-style-qformat: yes;
@@ -585,8 +595,6 @@ h6 {
585
595
  line-height: {{normalfontsize}};
586
596
  mso-pagination: widow-orphan;
587
597
  page-break-after: avoid;
588
- mso-outline-level: 6;
589
- mso-list: l1 level6 lfo6;
590
598
  mso-hyphenate: none;
591
599
  tab-stops: 51.05pt list 72.0pt;
592
600
  font-size: {{smallerfontsize}};
@@ -597,6 +605,10 @@ h6 {
597
605
  mso-fareast-language: JA;
598
606
  mso-bidi-font-weight: normal; }
599
607
 
608
+ h6 {
609
+ mso-outline-level: 6;
610
+ mso-list: l1 level6 lfo6; }
611
+
600
612
  p.MsoToc1, li.MsoToc1, div.MsoToc1 {
601
613
  mso-style-priority: 39;
602
614
  mso-style-unhide: no;
@@ -340,7 +340,7 @@ div.figure, p.figure
340
340
 
341
341
 
342
342
 
343
- h1
343
+ h1, .h1
344
344
  {mso-style-priority:1;
345
345
  mso-style-unhide:no;
346
346
  mso-style-qformat:yes;
@@ -355,8 +355,6 @@ h1
355
355
  line-height:13.5pt;
356
356
  mso-pagination:widow-orphan;
357
357
  page-break-after:avoid;
358
- mso-outline-level:1;
359
- mso-list:l1 level1 lfo6;
360
358
  mso-hyphenate:none;
361
359
  tab-stops:20.0pt list 21.6pt left 28.0pt;
362
360
  font-size:13.0pt;
@@ -368,6 +366,10 @@ h1
368
366
  mso-ansi-language:EN-GB;
369
367
  mso-fareast-language:JA;
370
368
  mso-bidi-font-weight:normal;}
369
+ h1 {
370
+ mso-outline-level:1;
371
+ mso-list:l1 level1 lfo6;
372
+ }
371
373
  h1.Annex
372
374
  {mso-style-priority:1;
373
375
  mso-style-unhide:no;
@@ -423,7 +425,7 @@ h1.Annex
423
425
  mso-ansi-language:EN-GB;
424
426
  mso-fareast-language:JA;
425
427
  mso-bidi-font-weight:normal;}
426
- h2
428
+ h2, .h2
427
429
  {mso-style-priority:2;
428
430
  mso-style-unhide:no;
429
431
  mso-style-qformat:yes;
@@ -439,8 +441,6 @@ h2
439
441
  line-height:12.5pt;
440
442
  mso-pagination:widow-orphan;
441
443
  page-break-after:avoid;
442
- mso-outline-level:2;
443
- mso-list:l1 level2 lfo6;
444
444
  mso-hyphenate:none;
445
445
  tab-stops:27.0pt 35.0pt;
446
446
  font-size:$normalfontsize;
@@ -451,7 +451,11 @@ h2
451
451
  mso-ansi-language:EN-GB;
452
452
  mso-fareast-language:JA;
453
453
  mso-bidi-font-weight:normal;}
454
- h3
454
+ h2 {
455
+ mso-outline-level:2;
456
+ mso-list:l1 level2 lfo6;
457
+ }
458
+ h3, .h3
455
459
  {mso-style-priority:3;
456
460
  mso-style-unhide:no;
457
461
  mso-style-qformat:yes;
@@ -467,8 +471,6 @@ h3
467
471
  line-height:$normalfontsize;
468
472
  mso-pagination:widow-orphan;
469
473
  page-break-after:avoid;
470
- mso-outline-level:3;
471
- mso-list:l1 level3 lfo6;
472
474
  mso-hyphenate:none;
473
475
  tab-stops:list 36.0pt left 44.0pt;
474
476
  font-size:$smallerfontsize;
@@ -478,7 +480,11 @@ h3
478
480
  mso-ansi-language:EN-GB;
479
481
  mso-fareast-language:JA;
480
482
  mso-bidi-font-weight:normal;}
481
- h4
483
+ h3 {
484
+ mso-outline-level:3;
485
+ mso-list:l1 level3 lfo6;
486
+ }
487
+ h4, .h4
482
488
  {mso-style-priority:4;
483
489
  mso-style-unhide:no;
484
490
  mso-style-qformat:yes;
@@ -494,8 +500,6 @@ h4
494
500
  line-height:$normalfontsize;
495
501
  mso-pagination:widow-orphan;
496
502
  page-break-after:avoid;
497
- mso-outline-level:4;
498
- mso-list:l1 level4 lfo6;
499
503
  mso-hyphenate:none;
500
504
  tab-stops:51.05pt 57.0pt 68.0pt;
501
505
  font-size:$smallerfontsize;
@@ -505,7 +509,11 @@ h4
505
509
  mso-ansi-language:EN-GB;
506
510
  mso-fareast-language:JA;
507
511
  mso-bidi-font-weight:normal;}
508
- h5
512
+ h4 {
513
+ mso-outline-level:4;
514
+ mso-list:l1 level4 lfo6;
515
+ }
516
+ h5, .h5
509
517
  {mso-style-priority:5;
510
518
  mso-style-unhide:no;
511
519
  mso-style-qformat:yes;
@@ -521,8 +529,6 @@ h5
521
529
  line-height:$normalfontsize;
522
530
  mso-pagination:widow-orphan;
523
531
  page-break-after:avoid;
524
- mso-outline-level:5;
525
- mso-list:l1 level5 lfo6;
526
532
  mso-hyphenate:none;
527
533
  tab-stops:51.05pt list 54.0pt;
528
534
  font-size:$smallerfontsize;
@@ -532,7 +538,11 @@ h5
532
538
  mso-ansi-language:EN-GB;
533
539
  mso-fareast-language:JA;
534
540
  mso-bidi-font-weight:normal;}
535
- h6
541
+ h5 {
542
+ mso-outline-level:5;
543
+ mso-list:l1 level5 lfo6;
544
+ }
545
+ h6, .h6
536
546
  {mso-style-priority:6;
537
547
  mso-style-unhide:no;
538
548
  mso-style-qformat:yes;
@@ -548,8 +558,6 @@ h6
548
558
  line-height:$normalfontsize;
549
559
  mso-pagination:widow-orphan;
550
560
  page-break-after:avoid;
551
- mso-outline-level:6;
552
- mso-list:l1 level6 lfo6;
553
561
  mso-hyphenate:none;
554
562
  tab-stops:51.05pt list 72.0pt;
555
563
  font-size:$smallerfontsize;
@@ -559,6 +567,10 @@ h6
559
567
  mso-ansi-language:EN-GB;
560
568
  mso-fareast-language:JA;
561
569
  mso-bidi-font-weight:normal;}
570
+ h6 {
571
+ mso-outline-level:6;
572
+ mso-list:l1 level6 lfo6;
573
+ }
562
574
  p.MsoToc1, li.MsoToc1, div.MsoToc1
563
575
  {mso-style-priority:39;
564
576
  mso-style-unhide:no;