metanorma-cc 1.8.4 → 1.8.5

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: 52349210dedcc74e07d51461b7b93f27d7a19b66fe3dc11df3012b1fb5dd26cb
4
- data.tar.gz: 55bcac678c4489d7777e07a341e238d41aec1afb309292e01de46d4548706319
3
+ metadata.gz: 8ca9d11e9a1712f3e8b12ff30290c84a576ddaf07da9345dfe2db4bed5fc6a97
4
+ data.tar.gz: e7cfe501e34131655a6f6d6af1fa7281bdadf83cddd4360c7d69ee0c8ab592ac
5
5
  SHA512:
6
- metadata.gz: 6e29004810ebfaeb721713b21c97ec3061ee0ddc0310202cdc34c44c33c03500753c1c93f57a1041ad231a9743c22461b2db912d88ba8afe64e9e35f7f3224cf
7
- data.tar.gz: 67d3593cc66b53b6752d78ed0c9c4b54f2262f11ddd2ebd8b4e059ccfbcd4f515dd31307b9ca6256a29924926c6b1f62014f5531c6bc7620df7266d63adc9e10
6
+ metadata.gz: c0b42e16d5b0a2ed8c8fc9d363c6382a2c37cff259a581be0cd06a77f97999a5697de53917d1b9ced4fea904498d3ebb5e17bb8de34f5048c82f513909862a31
7
+ data.tar.gz: 83dad53d5276c70a3e5cd1eb67134e035b91f84f2b2a390bf6c38843f09c4f8e14914013d70cbe021e21506ffef5367617fd5e927da32dfa1a5e8b06ce55e4f4
@@ -1973,7 +1973,11 @@
1973
1973
  </optional>
1974
1974
  <element name="name">
1975
1975
  <zeroOrMore>
1976
- <ref name="PureTextElement"/>
1976
+ <choice>
1977
+ <ref name="PureTextElement"/>
1978
+ <ref name="stem"/>
1979
+ <ref name="index"/>
1980
+ </choice>
1977
1981
  </zeroOrMore>
1978
1982
  </element>
1979
1983
  <optional>
@@ -1987,7 +1991,7 @@
1987
1991
  </element>
1988
1992
  </optional>
1989
1993
  <optional>
1990
- <element name="grammar-info">
1994
+ <element name="grammar">
1991
1995
  <ref name="Grammar"/>
1992
1996
  </element>
1993
1997
  </optional>
@@ -419,7 +419,7 @@
419
419
 
420
420
 
421
421
 
422
- <xsl:template match="csd:title">
422
+ <xsl:template match="csd:title" name="title">
423
423
 
424
424
  <xsl:variable name="level">
425
425
  <xsl:call-template name="getLevel"/>
@@ -582,7 +582,9 @@
582
582
  <fo:list-item-label end-indent="label-end()">
583
583
  <fo:block>
584
584
  <xsl:choose>
585
- <xsl:when test="local-name(..) = 'ul'">—</xsl:when> <!-- dash -->
585
+ <xsl:when test="local-name(..) = 'ul'">
586
+ <xsl:call-template name="setULLabel"/>
587
+ </xsl:when>
586
588
  <xsl:otherwise> <!-- for ordered lists -->
587
589
  <xsl:choose>
588
590
  <xsl:when test="../@type = 'arabic'">
@@ -3004,6 +3006,7 @@
3004
3006
  </xsl:template><xsl:template match="*[local-name()='dd']" mode="dl"/><xsl:template match="*[local-name()='dd']" mode="dl_process">
3005
3007
  <xsl:apply-templates/>
3006
3008
  </xsl:template><xsl:template match="*[local-name()='dd']"/><xsl:template match="*[local-name()='dd']" mode="process">
3009
+ <xsl:apply-templates select="@language"/>
3007
3010
  <xsl:apply-templates/>
3008
3011
  </xsl:template><xsl:template match="*[local-name()='dd']/*[local-name()='p']" mode="inline">
3009
3012
  <fo:inline><xsl:text> </xsl:text><xsl:apply-templates/></fo:inline>
@@ -5199,6 +5202,51 @@
5199
5202
  </xsl:template><xsl:template match="*[local-name() = 'name']/text()">
5200
5203
  <!-- 0xA0 to space replacement -->
5201
5204
  <xsl:value-of select="java:replaceAll(java:java.lang.String.new(.),' ',' ')"/>
5205
+ </xsl:template><xsl:variable name="ul_labels_">
5206
+
5207
+
5208
+
5209
+
5210
+ <label>—</label> <!-- em dash -->
5211
+
5212
+
5213
+
5214
+
5215
+
5216
+
5217
+
5218
+
5219
+
5220
+
5221
+
5222
+
5223
+
5224
+
5225
+ </xsl:variable><xsl:variable name="ul_labels" select="xalan:nodeset($ul_labels_)"/><xsl:template name="setULLabel">
5226
+ <xsl:variable name="list_level_" select="count(ancestor::*[local-name() = 'ul']) + count(ancestor::*[local-name() = 'ol'])"/>
5227
+ <xsl:variable name="list_level">
5228
+ <xsl:choose>
5229
+ <xsl:when test="$list_level_ &lt;= 3"><xsl:value-of select="$list_level_"/></xsl:when>
5230
+ <xsl:otherwise><xsl:value-of select="$list_level_ mod 3"/></xsl:otherwise>
5231
+ </xsl:choose>
5232
+ </xsl:variable>
5233
+ <xsl:choose>
5234
+ <xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
5235
+ <xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
5236
+ </xsl:when>
5237
+ <xsl:when test="$list_level mod 3 = 0">
5238
+ <xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
5239
+ </xsl:when>
5240
+ <xsl:when test="$list_level mod 2 = 0">
5241
+ <xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
5242
+ </xsl:when>
5243
+ <xsl:otherwise>
5244
+ <xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
5245
+ </xsl:otherwise>
5246
+ </xsl:choose>
5247
+ </xsl:template><xsl:template match="label" mode="ul_labels">
5248
+ <xsl:copy-of select="@*[not(local-name() = 'level')]"/>
5249
+ <xsl:value-of select="."/>
5202
5250
  </xsl:template><xsl:template match="*[local-name() = 'ul'] | *[local-name() = 'ol']">
5203
5251
  <xsl:choose>
5204
5252
  <xsl:when test="parent::*[local-name() = 'note'] or parent::*[local-name() = 'termnote']">
@@ -5652,6 +5700,10 @@
5652
5700
  </svg>
5653
5701
  </fo:instream-foreign-object>
5654
5702
  </fo:inline>
5703
+ </xsl:template><xsl:template match="@language">
5704
+ <xsl:copy-of select="."/>
5705
+ </xsl:template><xsl:template match="*[local-name() = 'p'][@type = 'floating-title']" priority="4">
5706
+ <xsl:call-template name="title"/>
5655
5707
  </xsl:template><xsl:template name="convertDate">
5656
5708
  <xsl:param name="date"/>
5657
5709
  <xsl:param name="format" select="'short'"/>
@@ -68,6 +68,12 @@ code *, pre *, tt *, kbd *, samp * {
68
68
  font-family: {{monospacefont}} !important;
69
69
  font-variant-ligatures: none; }
70
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
+
71
77
  article, aside, details, figcaption, figure,
72
78
  footer, header, hgroup, menu, nav, section {
73
79
  display: block; }
@@ -79,6 +85,9 @@ table {
79
85
  h1, h2, h3, h4, h5, h6 {
80
86
  font-family: {{headerfont}}; }
81
87
 
88
+ .h1, .h2, .h3, .h4, .h5, .h6 {
89
+ font-family: {{headerfont}}; }
90
+
82
91
  blockquote, q {
83
92
  quotes: none; }
84
93
  blockquote:before, blockquote:after, q:before, q:after {
@@ -68,6 +68,12 @@ code *, pre *, tt *, kbd *, samp * {
68
68
  font-family: {{monospacefont}} !important;
69
69
  font-variant-ligatures: none; }
70
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
+
71
77
  article, aside, details, figcaption, figure,
72
78
  footer, header, hgroup, menu, nav, section {
73
79
  display: block; }
@@ -79,6 +85,9 @@ table {
79
85
  h1, h2, h3, h4, h5, h6 {
80
86
  font-family: {{headerfont}}; }
81
87
 
88
+ .h1, .h2, .h3, .h4, .h5, .h6 {
89
+ font-family: {{headerfont}}; }
90
+
82
91
  blockquote, q {
83
92
  quotes: none; }
84
93
  blockquote:before, blockquote:after, q:before, q:after {
@@ -287,6 +296,12 @@ code *, pre *, tt *, kbd *, samp * {
287
296
  font-family: {{monospacefont}} !important;
288
297
  font-variant-ligatures: none; }
289
298
 
299
+ p code, dt code, li code, label code, legend code, caption code, th code, td code,
300
+ p tt, dt tt, li tt, label tt, legend tt, caption tt, th tt, td tt,
301
+ p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
302
+ p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
303
+ font-size: {{monospacefontsize}}; }
304
+
290
305
  article, aside, details, figcaption, figure,
291
306
  footer, header, hgroup, menu, nav, section {
292
307
  display: block; }
@@ -298,6 +313,9 @@ table {
298
313
  h1, h2, h3, h4, h5, h6 {
299
314
  font-family: {{headerfont}}; }
300
315
 
316
+ .h1, .h2, .h3, .h4, .h5, .h6 {
317
+ font-family: {{headerfont}}; }
318
+
301
319
  blockquote, q {
302
320
  quotes: none; }
303
321
  blockquote:before, blockquote:after, q:before, q:after {
@@ -723,26 +741,26 @@ nav #toc {
723
741
  top: 20px; }
724
742
 
725
743
  /* Typograpy */
726
- h1, h2, h3, h4, h5, h6 {
744
+ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
727
745
  color: #0e1a85;
728
746
  font-weight: 600;
729
747
  margin-top: 2em;
730
748
  margin-bottom: 0.3em; }
731
749
 
732
- h1 {
750
+ h1, .h1 {
733
751
  font-size: 1.4em;
734
752
  text-transform: uppercase;
735
753
  margin-top: 2em; }
736
- h1#content {
754
+ h1#content, #content.h1 {
737
755
  margin-top: 2em; }
738
756
 
739
- h2 {
757
+ h2, .h2 {
740
758
  font-size: 1.3em;
741
759
  font-weight: 400; }
742
- h2 p {
760
+ h2 p, .h2 p {
743
761
  display: inline; }
744
762
 
745
- h3 {
763
+ h3, .h3 {
746
764
  font-size: 1.1em;
747
765
  font-weight: 400; }
748
766
 
@@ -1031,7 +1049,7 @@ a.anchorjs-link:hover {
1031
1049
  margin: 2cm 1cm 2cm 1cm; }
1032
1050
 
1033
1051
  @media print {
1034
- h1, .title-section1 {
1052
+ h1, .h1, .title-section1 {
1035
1053
  page-break-before: always; }
1036
1054
  h1.toc-contents {
1037
1055
  margin-top: 2em; } }
@@ -96,14 +96,14 @@ nav {
96
96
 
97
97
  /* Typograpy */
98
98
 
99
- h1, h2, h3, h4, h5, h6 {
99
+ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
100
100
  color: #0e1a85;
101
101
  font-weight: 600;
102
102
  margin-top: 2em;
103
103
  margin-bottom: 0.3em;
104
104
  }
105
105
 
106
- h1 {
106
+ h1, .h1 {
107
107
  font-size: 1.4em;
108
108
  text-transform: uppercase;
109
109
  margin-top: 2em;
@@ -113,7 +113,7 @@ h1 {
113
113
  }
114
114
  }
115
115
 
116
- h2 {
116
+ h2, .h2 {
117
117
  font-size: 1.3em;
118
118
  font-weight: 400;
119
119
 
@@ -122,7 +122,7 @@ h2 {
122
122
  }
123
123
  }
124
124
 
125
- h3 {
125
+ h3, .h3 {
126
126
  font-size: 1.1em;
127
127
  font-weight: 400;
128
128
  }
@@ -401,7 +401,7 @@ a.anchorjs-link:hover {
401
401
  }
402
402
 
403
403
  @media print {
404
- h1, .title-section1 {
404
+ h1, .h1, .title-section1 {
405
405
  page-break-before: always;
406
406
  }
407
407
 
@@ -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-name: "Heading 1";
376
376
  mso-style-unhide: no;
@@ -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;
@@ -457,7 +459,7 @@ h1.Annex {
457
459
  mso-fareast-language: JA;
458
460
  mso-bidi-font-weight: normal; }
459
461
 
460
- h2 {
462
+ h2, .h2 {
461
463
  mso-style-priority: 2;
462
464
  mso-style-name: "Heading 2";
463
465
  mso-style-unhide: no;
@@ -473,8 +475,6 @@ h2 {
473
475
  line-height: 12.5pt;
474
476
  mso-pagination: widow-orphan;
475
477
  page-break-after: avoid;
476
- mso-outline-level: 2;
477
- mso-list: l1 level2 lfo6;
478
478
  mso-hyphenate: none;
479
479
  tab-stops: 27.0pt 35.0pt;
480
480
  font-size: 12.0pt;
@@ -486,7 +486,11 @@ h2 {
486
486
  mso-fareast-language: JA;
487
487
  mso-bidi-font-weight: normal; }
488
488
 
489
- h3 {
489
+ h2 {
490
+ mso-outline-level: 2;
491
+ mso-list: l1 level2 lfo6; }
492
+
493
+ h3, .h3 {
490
494
  mso-style-priority: 3;
491
495
  mso-style-name: "Heading 3";
492
496
  mso-style-unhide: no;
@@ -502,8 +506,6 @@ h3 {
502
506
  line-height: 12.0pt;
503
507
  mso-pagination: widow-orphan;
504
508
  page-break-after: avoid;
505
- mso-outline-level: 3;
506
- mso-list: l1 level3 lfo6;
507
509
  mso-hyphenate: none;
508
510
  tab-stops: list 36.0pt left 44.0pt;
509
511
  font-size: 11.0pt;
@@ -514,7 +516,11 @@ h3 {
514
516
  mso-fareast-language: JA;
515
517
  mso-bidi-font-weight: normal; }
516
518
 
517
- h4 {
519
+ h3 {
520
+ mso-outline-level: 3;
521
+ mso-list: l1 level3 lfo6; }
522
+
523
+ h4, .h4 {
518
524
  mso-style-priority: 4;
519
525
  mso-style-name: "Heading 4";
520
526
  mso-style-unhide: no;
@@ -530,8 +536,6 @@ h4 {
530
536
  line-height: 12.0pt;
531
537
  mso-pagination: widow-orphan;
532
538
  page-break-after: avoid;
533
- mso-outline-level: 4;
534
- mso-list: l1 level4 lfo6;
535
539
  mso-hyphenate: none;
536
540
  tab-stops: 51.05pt 57.0pt 68.0pt;
537
541
  font-size: 11.0pt;
@@ -542,7 +546,11 @@ h4 {
542
546
  mso-fareast-language: JA;
543
547
  mso-bidi-font-weight: normal; }
544
548
 
545
- h5 {
549
+ h4 {
550
+ mso-outline-level: 4;
551
+ mso-list: l1 level4 lfo6; }
552
+
553
+ h5, .h5 {
546
554
  mso-style-priority: 5;
547
555
  mso-style-name: "Heading 5";
548
556
  mso-style-unhide: no;
@@ -558,8 +566,6 @@ h5 {
558
566
  line-height: 12.0pt;
559
567
  mso-pagination: widow-orphan;
560
568
  page-break-after: avoid;
561
- mso-outline-level: 5;
562
- mso-list: l1 level5 lfo6;
563
569
  mso-hyphenate: none;
564
570
  tab-stops: 51.05pt list 54.0pt;
565
571
  font-size: 11.0pt;
@@ -570,7 +576,11 @@ h5 {
570
576
  mso-fareast-language: JA;
571
577
  mso-bidi-font-weight: normal; }
572
578
 
573
- h6 {
579
+ h5 {
580
+ mso-outline-level: 5;
581
+ mso-list: l1 level5 lfo6; }
582
+
583
+ h6, .h6 {
574
584
  mso-style-priority: 6;
575
585
  mso-style-name: "Heading 6";
576
586
  mso-style-unhide: no;
@@ -586,8 +596,6 @@ h6 {
586
596
  line-height: 12.0pt;
587
597
  mso-pagination: widow-orphan;
588
598
  page-break-after: avoid;
589
- mso-outline-level: 6;
590
- mso-list: l1 level6 lfo6;
591
599
  mso-hyphenate: none;
592
600
  tab-stops: 51.05pt list 72.0pt;
593
601
  font-size: 11.0pt;
@@ -598,6 +606,10 @@ h6 {
598
606
  mso-fareast-language: JA;
599
607
  mso-bidi-font-weight: normal; }
600
608
 
609
+ h6 {
610
+ mso-outline-level: 6;
611
+ mso-list: l1 level6 lfo6; }
612
+
601
613
  p.MsoToc1, li.MsoToc1, div.MsoToc1 {
602
614
  mso-style-priority: 39;
603
615
  mso-style-name: "TOC 1";
@@ -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-name:"Heading 1";
346
346
  mso-style-unhide:no;
@@ -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;
@@ -424,7 +426,7 @@ h1.Annex
424
426
  mso-ansi-language:EN-GB;
425
427
  mso-fareast-language:JA;
426
428
  mso-bidi-font-weight:normal;}
427
- h2
429
+ h2, .h2
428
430
  {mso-style-priority:2;
429
431
  mso-style-name:"Heading 2";
430
432
  mso-style-unhide:no;
@@ -440,8 +442,6 @@ h2
440
442
  line-height:12.5pt;
441
443
  mso-pagination:widow-orphan;
442
444
  page-break-after:avoid;
443
- mso-outline-level:2;
444
- mso-list:l1 level2 lfo6;
445
445
  mso-hyphenate:none;
446
446
  tab-stops:27.0pt 35.0pt;
447
447
  font-size:12.0pt;
@@ -452,7 +452,11 @@ h2
452
452
  mso-ansi-language:EN-GB;
453
453
  mso-fareast-language:JA;
454
454
  mso-bidi-font-weight:normal;}
455
- h3
455
+ h2 {
456
+ mso-outline-level:2;
457
+ mso-list:l1 level2 lfo6;
458
+ }
459
+ h3, .h3
456
460
  {mso-style-priority:3;
457
461
  mso-style-name:"Heading 3";
458
462
  mso-style-unhide:no;
@@ -468,8 +472,6 @@ h3
468
472
  line-height:12.0pt;
469
473
  mso-pagination:widow-orphan;
470
474
  page-break-after:avoid;
471
- mso-outline-level:3;
472
- mso-list:l1 level3 lfo6;
473
475
  mso-hyphenate:none;
474
476
  tab-stops:list 36.0pt left 44.0pt;
475
477
  font-size:11.0pt;
@@ -479,7 +481,11 @@ h3
479
481
  mso-ansi-language:EN-GB;
480
482
  mso-fareast-language:JA;
481
483
  mso-bidi-font-weight:normal;}
482
- h4
484
+ h3 {
485
+ mso-outline-level:3;
486
+ mso-list:l1 level3 lfo6;
487
+ }
488
+ h4, .h4
483
489
  {mso-style-priority:4;
484
490
  mso-style-name:"Heading 4";
485
491
  mso-style-unhide:no;
@@ -495,8 +501,6 @@ h4
495
501
  line-height:12.0pt;
496
502
  mso-pagination:widow-orphan;
497
503
  page-break-after:avoid;
498
- mso-outline-level:4;
499
- mso-list:l1 level4 lfo6;
500
504
  mso-hyphenate:none;
501
505
  tab-stops:51.05pt 57.0pt 68.0pt;
502
506
  font-size:11.0pt;
@@ -506,7 +510,11 @@ h4
506
510
  mso-ansi-language:EN-GB;
507
511
  mso-fareast-language:JA;
508
512
  mso-bidi-font-weight:normal;}
509
- h5
513
+ h4 {
514
+ mso-outline-level:4;
515
+ mso-list:l1 level4 lfo6;
516
+ }
517
+ h5, .h5
510
518
  {mso-style-priority:5;
511
519
  mso-style-name:"Heading 5";
512
520
  mso-style-unhide:no;
@@ -522,8 +530,6 @@ h5
522
530
  line-height:12.0pt;
523
531
  mso-pagination:widow-orphan;
524
532
  page-break-after:avoid;
525
- mso-outline-level:5;
526
- mso-list:l1 level5 lfo6;
527
533
  mso-hyphenate:none;
528
534
  tab-stops:51.05pt list 54.0pt;
529
535
  font-size:11.0pt;
@@ -533,7 +539,11 @@ h5
533
539
  mso-ansi-language:EN-GB;
534
540
  mso-fareast-language:JA;
535
541
  mso-bidi-font-weight:normal;}
536
- h6
542
+ h5 {
543
+ mso-outline-level:5;
544
+ mso-list:l1 level5 lfo6;
545
+ }
546
+ h6, .h6
537
547
  {mso-style-priority:6;
538
548
  mso-style-name:"Heading 6";
539
549
  mso-style-unhide:no;
@@ -549,8 +559,6 @@ h6
549
559
  line-height:12.0pt;
550
560
  mso-pagination:widow-orphan;
551
561
  page-break-after:avoid;
552
- mso-outline-level:6;
553
- mso-list:l1 level6 lfo6;
554
562
  mso-hyphenate:none;
555
563
  tab-stops:51.05pt list 72.0pt;
556
564
  font-size:11.0pt;
@@ -560,6 +568,10 @@ h6
560
568
  mso-ansi-language:EN-GB;
561
569
  mso-fareast-language:JA;
562
570
  mso-bidi-font-weight:normal;}
571
+ h6 {
572
+ mso-outline-level:6;
573
+ mso-list:l1 level6 lfo6;
574
+ }
563
575
  p.MsoToc1, li.MsoToc1, div.MsoToc1
564
576
  {mso-style-priority:39;
565
577
  mso-style-name:"TOC 1";
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module CC
3
- VERSION = "1.8.4".freeze
3
+ VERSION = "1.8.5".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-cc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.4
4
+ version: 1.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-13 00:00:00.000000000 Z
11
+ date: 2021-12-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: metanorma-generic