metanorma-csa 1.9.4 → 1.9.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52b62cc7064b035d413c88f8a3de6d094eced063f016624b43f44bce1e5bf3e3
4
- data.tar.gz: f4740d1004f59307a4c5280ba6c538cbeb7e891ee03c725f4753afad4349efee
3
+ metadata.gz: 37d3298cbb694f395c6d67468590131ee9d24a46fd1f77c5469a9eb066e8cbd4
4
+ data.tar.gz: 2fb5f6aa1b8154b25be5fe200686cae552c75992640885be121267ee2de27b19
5
5
  SHA512:
6
- metadata.gz: 9f63606c5204e50d7e53133dfaa6bde5131ff34d9f5e3626699b2a32c847f5754048bbbf358d719f94d7a2a8813f33aa1f8e0f0c67f90d7e5f4d63e2a8321b54
7
- data.tar.gz: 33d553fb0447c97833a2fd77c6b65bc0fbcbc9c102220037f2967418581ff6ee4d520d6a92dc128a2f283800b54279574e4fdad758edcda40bae63b13553da45
6
+ metadata.gz: 82a604704af383a648fa2deb3cb99e0144fd793b84e91810a4c4742eeb58f6f00511b2c30144dbae2f8165f7160f2140a78db292a625751b8267aaa2a616e8b5
7
+ data.tar.gz: e651db08a2b49fad657d925df1dd4775fedc4b5f5af1383f714939453a9dd10d504db668221f652c5b9d8c75a38b13ccbb47199b4be6617a42f4591a2ec90bfb
@@ -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
  </fo:block>
420
420
  </xsl:template>
421
421
 
422
- <xsl:template match="csa:title">
422
+ <xsl:template match="csa:title" name="title">
423
423
 
424
424
  <xsl:variable name="level">
425
425
  <xsl:call-template name="getLevel"/>
@@ -651,8 +651,11 @@
651
651
  <fo:list-item-label end-indent="label-end()">
652
652
  <fo:block>
653
653
  <xsl:choose>
654
- <xsl:when test="local-name(..) = 'ul' and (../ancestor::csa:ul or ../ancestor::csa:ol)">-</xsl:when> <!-- &#x2014; dash -->
655
- <xsl:when test="local-name(..) = 'ul'">•</xsl:when> <!-- &#x2014; dash -->
654
+ <xsl:when test="local-name(..) = 'ul'">
655
+ <xsl:call-template name="setULLabel"/>
656
+ </xsl:when>
657
+ <!-- <xsl:when test="local-name(..) = 'ul' and (../ancestor::csa:ul or ../ancestor::csa:ol)">-</xsl:when> --> <!-- &#x2014; dash -->
658
+ <!-- <xsl:when test="local-name(..) = 'ul'">•</xsl:when> --> <!-- &#x2014; dash -->
656
659
  <xsl:otherwise> <!-- for ordered lists -->
657
660
  <xsl:choose>
658
661
  <xsl:when test="../@type = 'arabic'">
@@ -3082,6 +3085,7 @@
3082
3085
  </xsl:template><xsl:template match="*[local-name()='dd']" mode="dl"/><xsl:template match="*[local-name()='dd']" mode="dl_process">
3083
3086
  <xsl:apply-templates/>
3084
3087
  </xsl:template><xsl:template match="*[local-name()='dd']"/><xsl:template match="*[local-name()='dd']" mode="process">
3088
+ <xsl:apply-templates select="@language"/>
3085
3089
  <xsl:apply-templates/>
3086
3090
  </xsl:template><xsl:template match="*[local-name()='dd']/*[local-name()='p']" mode="inline">
3087
3091
  <fo:inline><xsl:text> </xsl:text><xsl:apply-templates/></fo:inline>
@@ -5272,6 +5276,53 @@
5272
5276
  </xsl:template><xsl:template match="*[local-name() = 'name']/text()">
5273
5277
  <!-- 0xA0 to space replacement -->
5274
5278
  <xsl:value-of select="java:replaceAll(java:java.lang.String.new(.),' ',' ')"/>
5279
+ </xsl:template><xsl:variable name="ul_labels_">
5280
+
5281
+
5282
+
5283
+ <label level="1">•</label>
5284
+ <label level="2">-</label><!-- minus -->
5285
+ <label level="3" font-size="75%">o</label> <!-- white circle -->
5286
+
5287
+
5288
+
5289
+
5290
+
5291
+
5292
+
5293
+
5294
+
5295
+
5296
+
5297
+
5298
+
5299
+
5300
+
5301
+ </xsl:variable><xsl:variable name="ul_labels" select="xalan:nodeset($ul_labels_)"/><xsl:template name="setULLabel">
5302
+ <xsl:variable name="list_level_" select="count(ancestor::*[local-name() = 'ul']) + count(ancestor::*[local-name() = 'ol'])"/>
5303
+ <xsl:variable name="list_level">
5304
+ <xsl:choose>
5305
+ <xsl:when test="$list_level_ &lt;= 3"><xsl:value-of select="$list_level_"/></xsl:when>
5306
+ <xsl:otherwise><xsl:value-of select="$list_level_ mod 3"/></xsl:otherwise>
5307
+ </xsl:choose>
5308
+ </xsl:variable>
5309
+ <xsl:choose>
5310
+ <xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
5311
+ <xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
5312
+ </xsl:when>
5313
+ <xsl:when test="$list_level mod 3 = 0">
5314
+ <xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
5315
+ </xsl:when>
5316
+ <xsl:when test="$list_level mod 2 = 0">
5317
+ <xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
5318
+ </xsl:when>
5319
+ <xsl:otherwise>
5320
+ <xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
5321
+ </xsl:otherwise>
5322
+ </xsl:choose>
5323
+ </xsl:template><xsl:template match="label" mode="ul_labels">
5324
+ <xsl:copy-of select="@*[not(local-name() = 'level')]"/>
5325
+ <xsl:value-of select="."/>
5275
5326
  </xsl:template><xsl:template match="*[local-name() = 'ul'] | *[local-name() = 'ol']">
5276
5327
  <xsl:choose>
5277
5328
  <xsl:when test="parent::*[local-name() = 'note'] or parent::*[local-name() = 'termnote']">
@@ -5725,6 +5776,10 @@
5725
5776
  </svg>
5726
5777
  </fo:instream-foreign-object>
5727
5778
  </fo:inline>
5779
+ </xsl:template><xsl:template match="@language">
5780
+ <xsl:copy-of select="."/>
5781
+ </xsl:template><xsl:template match="*[local-name() = 'p'][@type = 'floating-title']" priority="4">
5782
+ <xsl:call-template name="title"/>
5728
5783
  </xsl:template><xsl:template name="convertDate">
5729
5784
  <xsl:param name="date"/>
5730
5785
  <xsl:param name="format" select="'short'"/>
@@ -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 {
@@ -506,7 +515,7 @@ dt {
506
515
  /*
507
516
  3.1 Titles
508
517
  */
509
- h1, h2, h3, h4, h5, h6 {
518
+ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
510
519
  font-family: {{headerfont}};
511
520
  line-height: 1.2em;
512
521
  color: black;
@@ -514,18 +523,18 @@ h1, h2, h3, h4, h5, h6 {
514
523
  margin-top: 1.5em;
515
524
  margin-bottom: 0.3em; }
516
525
 
517
- h1 {
526
+ h1, .h1 {
518
527
  font-size: 1.8em;
519
528
  text-transform: uppercase;
520
529
  /* margin-top: 2em;*/ }
521
530
 
522
- h1#content {
531
+ h1#content, #content.h1 {
523
532
  margin-top: 2em; }
524
533
 
525
- h2 {
534
+ h2, .h2 {
526
535
  font-size: 1.6em; }
527
536
 
528
- h3 {
537
+ h3, .h3 {
529
538
  font-size: 1.5em; }
530
539
 
531
540
  /*
@@ -604,7 +613,7 @@ ul, ol {
604
613
  margin: 2em 0; }
605
614
 
606
615
  /*
607
- h2 p {
616
+ h2 p,.h2 p {
608
617
  display: inline;
609
618
  }
610
619
  */
@@ -964,7 +973,7 @@ img.csa-logo {
964
973
  color: white;
965
974
  text-transform: uppercase; }
966
975
 
967
- .section-title h1 {
976
+ .section-title h1, .section-title .h1 {
968
977
  font-size: 2em;
969
978
  font-weight: 800;
970
979
  line-height: 1em;
@@ -973,11 +982,11 @@ img.csa-logo {
973
982
  color: white;
974
983
  text-transform: none; }
975
984
 
976
- h2 {
985
+ h2, .h2 {
977
986
  border-bottom: solid 1px #4D7EA5;
978
987
  color: #4D7EA5; }
979
988
 
980
- h3, h4, h5, h6 {
989
+ h3, h4, h5, h6, .h3, .h4, .h5, .h6 {
981
990
  color: #EE9C4F; }
982
991
 
983
992
  /*
@@ -186,7 +186,7 @@ dt {
186
186
  3.1 Titles
187
187
  */
188
188
 
189
- h1,h2,h3,h4,h5,h6 {
189
+ h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
190
190
  font-family: $headerfont;
191
191
  line-height: 1.2em;
192
192
  color: black;
@@ -195,21 +195,21 @@ h1,h2,h3,h4,h5,h6 {
195
195
  margin-bottom: 0.3em;
196
196
  }
197
197
 
198
- h1 {
198
+ h1,.h1 {
199
199
  font-size: 1.8em;
200
200
  text-transform: uppercase;
201
201
  /* margin-top: 2em;*/
202
202
  }
203
203
 
204
- h1#content {
204
+ h1#content,.h1#content {
205
205
  margin-top: 2em;
206
206
  }
207
207
 
208
- h2 {
208
+ h2,.h2 {
209
209
  font-size: 1.6em;
210
210
  }
211
211
 
212
- h3 {
212
+ h3,.h3 {
213
213
  font-size: 1.5em;
214
214
  }
215
215
  /*
@@ -283,7 +283,7 @@ ul, ol {
283
283
  @include rule(1px, #00427e)
284
284
  }
285
285
  /*
286
- h2 p {
286
+ h2 p,.h2 p {
287
287
  display: inline;
288
288
  }
289
289
  */
@@ -663,7 +663,7 @@ img.csa-logo {
663
663
  text-transform: uppercase;
664
664
  }
665
665
 
666
- .section-title h1 {
666
+ .section-title h1, .section-title .h1 {
667
667
  font-size: 2em;
668
668
  font-weight: 800;
669
669
  line-height: 1em;
@@ -673,12 +673,12 @@ img.csa-logo {
673
673
  text-transform: none;
674
674
  }
675
675
 
676
- h2 {
676
+ h2,.h2 {
677
677
  border-bottom: solid 1px #4D7EA5;
678
678
  color: #4D7EA5;
679
679
  }
680
680
 
681
- h3, h4, h5, h6 {
681
+ h3, h4, h5, h6, .h3, .h4, .h5, .h6 {
682
682
  color: #EE9C4F;
683
683
  }
684
684
 
@@ -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;
@@ -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-unhide: no;
463
465
  mso-style-qformat: yes;
@@ -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-unhide: no;
492
496
  mso-style-qformat: yes;
@@ -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-unhide: no;
520
526
  mso-style-qformat: yes;
@@ -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-unhide: no;
548
556
  mso-style-qformat: yes;
@@ -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-unhide: no;
576
586
  mso-style-qformat: yes;
@@ -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-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;
@@ -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-unhide:no;
430
432
  mso-style-qformat:yes;
@@ -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-unhide:no;
458
462
  mso-style-qformat:yes;
@@ -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-unhide:no;
485
491
  mso-style-qformat:yes;
@@ -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-unhide:no;
512
520
  mso-style-qformat:yes;
@@ -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-unhide:no;
539
549
  mso-style-qformat:yes;
@@ -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-unhide:no;
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Csa
3
- VERSION = "1.9.4".freeze
3
+ VERSION = "1.9.5".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-csa
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.4
4
+ version: 1.9.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