metanorma-cc 1.7.12 → 1.8.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/docs/quickstart.adoc +2 -2
- data/lib/asciidoctor/cc/basicdoc.rng +21 -4
- data/lib/asciidoctor/cc/converter.rb +14 -12
- data/lib/asciidoctor/cc/isodoc.rng +420 -76
- data/lib/asciidoctor/cc/reqt.rng +23 -2
- data/lib/isodoc/cc/cc.standard.xsl +48 -13
- data/lib/isodoc/cc/html/wordstyle.css +11 -0
- data/lib/isodoc/cc/html/wordstyle.scss +13 -2
- data/lib/metanorma/cc/version.rb +1 -1
- data/metanorma-cc.gemspec +1 -1
- metadata +5 -5
data/lib/asciidoctor/cc/reqt.rng
CHANGED
@@ -58,6 +58,14 @@
|
|
58
58
|
<optional>
|
59
59
|
<attribute name="type"/>
|
60
60
|
</optional>
|
61
|
+
<optional>
|
62
|
+
<attribute name="tag"/>
|
63
|
+
</optional>
|
64
|
+
<optional>
|
65
|
+
<attribute name="multilingual-rendering">
|
66
|
+
<ref name="MultilingualRenderingType"/>
|
67
|
+
</attribute>
|
68
|
+
</optional>
|
61
69
|
<optional>
|
62
70
|
<ref name="reqtitle"/>
|
63
71
|
</optional>
|
@@ -101,7 +109,9 @@
|
|
101
109
|
</define>
|
102
110
|
<define name="label">
|
103
111
|
<element name="label">
|
104
|
-
<
|
112
|
+
<oneOrMore>
|
113
|
+
<ref name="TextElement"/>
|
114
|
+
</oneOrMore>
|
105
115
|
</element>
|
106
116
|
</define>
|
107
117
|
<define name="subject">
|
@@ -175,8 +185,19 @@
|
|
175
185
|
<data type="boolean"/>
|
176
186
|
</attribute>
|
177
187
|
</optional>
|
188
|
+
<optional>
|
189
|
+
<attribute name="tag"/>
|
190
|
+
</optional>
|
191
|
+
<optional>
|
192
|
+
<attribute name="multilingual-rendering">
|
193
|
+
<ref name="MultilingualRenderingType"/>
|
194
|
+
</attribute>
|
195
|
+
</optional>
|
178
196
|
<oneOrMore>
|
179
|
-
<
|
197
|
+
<choice>
|
198
|
+
<ref name="BasicBlock"/>
|
199
|
+
<ref name="component"/>
|
200
|
+
</choice>
|
180
201
|
</oneOrMore>
|
181
202
|
</define>
|
182
203
|
<define name="ObligationType">
|
@@ -649,7 +649,7 @@
|
|
649
649
|
</xsl:variable>
|
650
650
|
<fo:block font-size="{$font-size}" line-height="1.1" role="H{$levelTerm}">
|
651
651
|
<fo:block font-weight="bold" keep-with-next="always">
|
652
|
-
<xsl:apply-templates select="ancestor::csd:term/csd:name" mode="presentation"/>
|
652
|
+
<xsl:apply-templates select="ancestor::csd:term[1]/csd:name" mode="presentation"/>
|
653
653
|
</fo:block>
|
654
654
|
<fo:block font-weight="bold" keep-with-next="always">
|
655
655
|
<xsl:apply-templates/>
|
@@ -911,6 +911,8 @@
|
|
911
911
|
|
912
912
|
<title-list-figures lang="en">List of Figures</title-list-figures>
|
913
913
|
|
914
|
+
<title-table-figures lang="en">Table of Figures</title-table-figures>
|
915
|
+
|
914
916
|
<title-list-recommendations lang="en">List of Recommendations</title-list-recommendations>
|
915
917
|
|
916
918
|
<title-acknowledgements lang="en">Acknowledgements</title-acknowledgements>
|
@@ -1201,6 +1203,11 @@
|
|
1201
1203
|
|
1202
1204
|
|
1203
1205
|
|
1206
|
+
</xsl:attribute-set><xsl:attribute-set name="table-note-name-style">
|
1207
|
+
|
1208
|
+
|
1209
|
+
|
1210
|
+
|
1204
1211
|
</xsl:attribute-set><xsl:attribute-set name="note-p-style">
|
1205
1212
|
|
1206
1213
|
|
@@ -2284,9 +2291,8 @@
|
|
2284
2291
|
|
2285
2292
|
<!-- Table's note name (NOTE, for example) -->
|
2286
2293
|
|
2287
|
-
<fo:inline padding-right="2mm">
|
2294
|
+
<fo:inline padding-right="2mm" xsl:use-attribute-sets="table-note-name-style">
|
2288
2295
|
|
2289
|
-
|
2290
2296
|
|
2291
2297
|
|
2292
2298
|
|
@@ -2793,6 +2799,7 @@
|
|
2793
2799
|
<fo:table-cell>
|
2794
2800
|
|
2795
2801
|
<fo:block margin-top="6pt">
|
2802
|
+
<xsl:copy-of select="@id"/>
|
2796
2803
|
|
2797
2804
|
|
2798
2805
|
<xsl:if test="normalize-space($key_iso) = 'true'">
|
@@ -2898,6 +2905,8 @@
|
|
2898
2905
|
<xsl:if test="$font-size != ''">
|
2899
2906
|
<xsl:attribute name="font-size">
|
2900
2907
|
<xsl:choose>
|
2908
|
+
<xsl:when test="$font-size = 'inherit'"><xsl:value-of select="$font-size"/></xsl:when>
|
2909
|
+
<xsl:when test="contains($font-size, '%')"><xsl:value-of select="$font-size"/></xsl:when>
|
2901
2910
|
<xsl:when test="ancestor::*[local-name()='note']"><xsl:value-of select="$font-size * 0.91"/>pt</xsl:when>
|
2902
2911
|
<xsl:otherwise><xsl:value-of select="$font-size"/>pt</xsl:otherwise>
|
2903
2912
|
</xsl:choose>
|
@@ -3628,14 +3637,18 @@
|
|
3628
3637
|
</xsl:template><xsl:template match="*[local-name() = 'termnote']/*[local-name() = 'p']">
|
3629
3638
|
<fo:inline><xsl:apply-templates/></fo:inline>
|
3630
3639
|
</xsl:template><xsl:template match="*[local-name() = 'terms']">
|
3640
|
+
<!-- <xsl:message>'terms' <xsl:number/> processing...</xsl:message> -->
|
3631
3641
|
<fo:block id="{@id}">
|
3632
3642
|
<xsl:apply-templates/>
|
3633
3643
|
</fo:block>
|
3634
3644
|
</xsl:template><xsl:template match="*[local-name() = 'term']">
|
3645
|
+
<!-- <xsl:message>'term' <xsl:number/> processing, name=<xsl:value-of select="iso:name"/>, preferred=<xsl:value-of select="iso:preferred"/>...</xsl:message> -->
|
3635
3646
|
<fo:block id="{@id}" xsl:use-attribute-sets="term-style">
|
3636
3647
|
|
3637
3648
|
|
3638
|
-
|
3649
|
+
<xsl:if test="parent::*[local-name() = 'term'] and not(preceding-sibling::*[local-name() = 'term'])">
|
3650
|
+
|
3651
|
+
</xsl:if>
|
3639
3652
|
<xsl:apply-templates/>
|
3640
3653
|
</fo:block>
|
3641
3654
|
</xsl:template><xsl:template match="*[local-name() = 'term']/*[local-name() = 'name']"/><xsl:template match="*[local-name() = 'term']/*[local-name() = 'name']" mode="presentation">
|
@@ -3697,6 +3710,7 @@
|
|
3697
3710
|
<xsl:otherwise>
|
3698
3711
|
<fo:block xsl:use-attribute-sets="image-style">
|
3699
3712
|
|
3713
|
+
|
3700
3714
|
<xsl:variable name="src">
|
3701
3715
|
<xsl:call-template name="image_src"/>
|
3702
3716
|
</xsl:variable>
|
@@ -4063,7 +4077,7 @@
|
|
4063
4077
|
<xsl:text> </xsl:text>
|
4064
4078
|
</xsl:template><xsl:template match="*[local-name() = 'figure' or local-name() = 'table' or local-name() = 'permission' or local-name() = 'recommendation' or local-name() = 'requirement']/*[local-name() = 'name']/text()" mode="contents" priority="2">
|
4065
4079
|
<xsl:value-of select="."/>
|
4066
|
-
</xsl:template><xsl:template match="*[local-name() = 'figure' or local-name() = 'table' or local-name() = 'permission' or local-name() = 'recommendation' or local-name() = 'requirement']/*[local-name() = 'name']
|
4080
|
+
</xsl:template><xsl:template match="*[local-name() = 'figure' or local-name() = 'table' or local-name() = 'permission' or local-name() = 'recommendation' or local-name() = 'requirement']/*[local-name() = 'name']//text()" mode="bookmarks" priority="2">
|
4067
4081
|
<xsl:value-of select="."/>
|
4068
4082
|
</xsl:template><xsl:template match="node()" mode="contents">
|
4069
4083
|
<xsl:apply-templates mode="contents"/>
|
@@ -4161,6 +4175,8 @@
|
|
4161
4175
|
|
4162
4176
|
|
4163
4177
|
|
4178
|
+
|
4179
|
+
|
4164
4180
|
</fo:bookmark-tree>
|
4165
4181
|
</xsl:if>
|
4166
4182
|
</xsl:template><xsl:template name="insertFigureBookmarks">
|
@@ -4354,12 +4370,16 @@
|
|
4354
4370
|
<xsl:if test="$font-size != ''">
|
4355
4371
|
<xsl:attribute name="font-size">
|
4356
4372
|
<xsl:choose>
|
4373
|
+
<xsl:when test="$font-size = 'inherit'"><xsl:value-of select="$font-size"/></xsl:when>
|
4374
|
+
<xsl:when test="contains($font-size, '%')"><xsl:value-of select="$font-size"/></xsl:when>
|
4357
4375
|
<xsl:when test="ancestor::*[local-name()='note']"><xsl:value-of select="$font-size * 0.91"/>pt</xsl:when>
|
4358
4376
|
<xsl:otherwise><xsl:value-of select="$font-size"/>pt</xsl:otherwise>
|
4359
4377
|
</xsl:choose>
|
4360
4378
|
</xsl:attribute>
|
4361
4379
|
</xsl:if>
|
4362
4380
|
|
4381
|
+
|
4382
|
+
|
4363
4383
|
<xsl:apply-templates/>
|
4364
4384
|
</fo:block>
|
4365
4385
|
|
@@ -4602,7 +4622,8 @@
|
|
4602
4622
|
</fo:block>
|
4603
4623
|
</fo:table-cell>
|
4604
4624
|
</xsl:template><xsl:template match="*[local-name() = 'p'][@class='RecommendationTitle' or @class = 'RecommendationTestTitle']" priority="2">
|
4605
|
-
<fo:block font-size="11pt"
|
4625
|
+
<fo:block font-size="11pt">
|
4626
|
+
|
4606
4627
|
<xsl:apply-templates/>
|
4607
4628
|
</fo:block>
|
4608
4629
|
</xsl:template><xsl:template match="*[local-name() = 'p2'][ancestor::*[local-name() = 'table'][@class = 'recommendation' or @class='requirement' or @class='permission']]">
|
@@ -4707,6 +4728,7 @@
|
|
4707
4728
|
</xsl:choose>
|
4708
4729
|
</xsl:template><xsl:template match="*[local-name() = 'termsource']" name="termsource">
|
4709
4730
|
<fo:block xsl:use-attribute-sets="termsource-style">
|
4731
|
+
|
4710
4732
|
<!-- Example: [SOURCE: ISO 5127:2017, 3.1.6.02] -->
|
4711
4733
|
<xsl:variable name="termsource_text">
|
4712
4734
|
<xsl:apply-templates/>
|
@@ -4717,13 +4739,15 @@
|
|
4717
4739
|
<!-- <xsl:apply-templates /> -->
|
4718
4740
|
<xsl:copy-of select="$termsource_text"/>
|
4719
4741
|
</xsl:when>
|
4720
|
-
<xsl:otherwise>
|
4742
|
+
<xsl:otherwise>
|
4743
|
+
|
4721
4744
|
|
4722
4745
|
<xsl:text>[</xsl:text>
|
4723
4746
|
|
4724
4747
|
<!-- <xsl:apply-templates /> -->
|
4725
4748
|
<xsl:copy-of select="$termsource_text"/>
|
4726
4749
|
|
4750
|
+
|
4727
4751
|
<xsl:text>]</xsl:text>
|
4728
4752
|
|
4729
4753
|
</xsl:otherwise>
|
@@ -4807,12 +4831,20 @@
|
|
4807
4831
|
</xsl:template><xsl:template match="*[local-name() = 'author']">
|
4808
4832
|
<xsl:text>— </xsl:text>
|
4809
4833
|
<xsl:apply-templates/>
|
4810
|
-
</xsl:template><xsl:
|
4834
|
+
</xsl:template><xsl:variable name="bibitem_hidden_">
|
4835
|
+
<xsl:for-each select="//*[local-name() = 'bibitem'][@hidden='true']">
|
4836
|
+
<xsl:copy-of select="."/>
|
4837
|
+
</xsl:for-each>
|
4838
|
+
<xsl:for-each select="//*[local-name() = 'references'][@hidden='true']/*[local-name() = 'bibitem']">
|
4839
|
+
<xsl:copy-of select="."/>
|
4840
|
+
</xsl:for-each>
|
4841
|
+
</xsl:variable><xsl:variable name="bibitem_hidden" select="xalan:nodeset($bibitem_hidden_)"/><xsl:template match="*[local-name() = 'eref']">
|
4811
4842
|
|
4812
4843
|
<xsl:variable name="bibitemid">
|
4813
4844
|
<xsl:choose>
|
4814
|
-
<xsl:when test="//*[local-name() = 'bibitem'][@hidden='true' and @id = current()/@bibitemid]"
|
4815
|
-
<xsl:when test="//*[local-name() = 'references'][@hidden='true']/*[local-name() = 'bibitem'][@id = current()/@bibitemid]"
|
4845
|
+
<!-- <xsl:when test="//*[local-name() = 'bibitem'][@hidden='true' and @id = current()/@bibitemid]"></xsl:when>
|
4846
|
+
<xsl:when test="//*[local-name() = 'references'][@hidden='true']/*[local-name() = 'bibitem'][@id = current()/@bibitemid]"></xsl:when> -->
|
4847
|
+
<xsl:when test="$bibitem_hidden/*[local-name() = 'bibitem'][@id = current()/@bibitemid]"/>
|
4816
4848
|
<xsl:otherwise><xsl:value-of select="@bibitemid"/></xsl:otherwise>
|
4817
4849
|
</xsl:choose>
|
4818
4850
|
</xsl:variable>
|
@@ -4905,10 +4937,10 @@
|
|
4905
4937
|
</xsl:choose>
|
4906
4938
|
</xsl:variable>
|
4907
4939
|
|
4908
|
-
<xsl:variable name="language" select="//*[local-name()='bibdata']//*[local-name()='language']"/>
|
4940
|
+
<!-- <xsl:variable name="language" select="//*[local-name()='bibdata']//*[local-name()='language']"/> -->
|
4909
4941
|
|
4910
4942
|
<xsl:choose>
|
4911
|
-
<xsl:when test="$
|
4943
|
+
<xsl:when test="$lang = 'zh'">
|
4912
4944
|
<fo:inline><xsl:value-of select="$tab_zh"/></fo:inline>
|
4913
4945
|
</xsl:when>
|
4914
4946
|
<xsl:when test="../../@inline-header = 'true'">
|
@@ -5893,12 +5925,15 @@
|
|
5893
5925
|
<xsl:param name="default">left</xsl:param>
|
5894
5926
|
<xsl:attribute name="text-align">
|
5895
5927
|
<xsl:choose>
|
5896
|
-
<xsl:when test="@align"><xsl:value-of select="@align"/></xsl:when>
|
5928
|
+
<xsl:when test="@align and not(@align = 'indent')"><xsl:value-of select="@align"/></xsl:when>
|
5897
5929
|
<xsl:when test="ancestor::*[local-name() = 'td']/@align"><xsl:value-of select="ancestor::*[local-name() = 'td']/@align"/></xsl:when>
|
5898
5930
|
<xsl:when test="ancestor::*[local-name() = 'th']/@align"><xsl:value-of select="ancestor::*[local-name() = 'th']/@align"/></xsl:when>
|
5899
5931
|
<xsl:otherwise><xsl:value-of select="$default"/></xsl:otherwise>
|
5900
5932
|
</xsl:choose>
|
5901
5933
|
</xsl:attribute>
|
5934
|
+
<xsl:if test="@align = 'indent'">
|
5935
|
+
<xsl:attribute name="margin-left">7mm</xsl:attribute>
|
5936
|
+
</xsl:if>
|
5902
5937
|
</xsl:template><xsl:template name="number-to-words">
|
5903
5938
|
<xsl:param name="number"/>
|
5904
5939
|
<xsl:param name="first"/>
|
@@ -152,6 +152,7 @@ p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxS
|
|
152
152
|
|
153
153
|
p.MsoCommentText, li.MsoCommentText, div.MsoCommentText {
|
154
154
|
mso-style-noshow: yes;
|
155
|
+
mso-style-name: "Comment Text";
|
155
156
|
mso-style-unhide: no;
|
156
157
|
margin: 0cm;
|
157
158
|
margin-bottom: .0001pt;
|
@@ -371,6 +372,7 @@ div.figure, p.figure {
|
|
371
372
|
|
372
373
|
h1 {
|
373
374
|
mso-style-priority: 1;
|
375
|
+
mso-style-name: "Heading 1";
|
374
376
|
mso-style-unhide: no;
|
375
377
|
mso-style-qformat: yes;
|
376
378
|
mso-style-link: "Heading 1 Char";
|
@@ -457,6 +459,7 @@ h1.Annex {
|
|
457
459
|
|
458
460
|
h2 {
|
459
461
|
mso-style-priority: 2;
|
462
|
+
mso-style-name: "Heading 2";
|
460
463
|
mso-style-unhide: no;
|
461
464
|
mso-style-qformat: yes;
|
462
465
|
mso-style-parent: "Heading 1";
|
@@ -485,6 +488,7 @@ h2 {
|
|
485
488
|
|
486
489
|
h3 {
|
487
490
|
mso-style-priority: 3;
|
491
|
+
mso-style-name: "Heading 3";
|
488
492
|
mso-style-unhide: no;
|
489
493
|
mso-style-qformat: yes;
|
490
494
|
mso-style-parent: "Heading 1";
|
@@ -512,6 +516,7 @@ h3 {
|
|
512
516
|
|
513
517
|
h4 {
|
514
518
|
mso-style-priority: 4;
|
519
|
+
mso-style-name: "Heading 4";
|
515
520
|
mso-style-unhide: no;
|
516
521
|
mso-style-qformat: yes;
|
517
522
|
mso-style-parent: "Heading 3";
|
@@ -539,6 +544,7 @@ h4 {
|
|
539
544
|
|
540
545
|
h5 {
|
541
546
|
mso-style-priority: 5;
|
547
|
+
mso-style-name: "Heading 5";
|
542
548
|
mso-style-unhide: no;
|
543
549
|
mso-style-qformat: yes;
|
544
550
|
mso-style-parent: "Heading 4";
|
@@ -566,6 +572,7 @@ h5 {
|
|
566
572
|
|
567
573
|
h6 {
|
568
574
|
mso-style-priority: 6;
|
575
|
+
mso-style-name: "Heading 6";
|
569
576
|
mso-style-unhide: no;
|
570
577
|
mso-style-qformat: yes;
|
571
578
|
mso-style-parent: "Heading 5";
|
@@ -593,6 +600,7 @@ h6 {
|
|
593
600
|
|
594
601
|
p.MsoToc1, li.MsoToc1, div.MsoToc1 {
|
595
602
|
mso-style-priority: 39;
|
603
|
+
mso-style-name: "TOC 1";
|
596
604
|
mso-style-unhide: no;
|
597
605
|
mso-style-next: Normal;
|
598
606
|
margin-top: 6.0pt;
|
@@ -615,6 +623,7 @@ p.MsoToc1, li.MsoToc1, div.MsoToc1 {
|
|
615
623
|
|
616
624
|
p.MsoToc2, li.MsoToc2, div.MsoToc2 {
|
617
625
|
mso-style-noshow: yes;
|
626
|
+
mso-style-name: "TOC 2";
|
618
627
|
mso-style-priority: 39;
|
619
628
|
mso-style-unhide: no;
|
620
629
|
mso-style-parent: "TOC 1";
|
@@ -639,6 +648,7 @@ p.MsoToc2, li.MsoToc2, div.MsoToc2 {
|
|
639
648
|
|
640
649
|
p.MsoToc3, li.MsoToc3, div.MsoToc3 {
|
641
650
|
mso-style-noshow: yes;
|
651
|
+
mso-style-name: "TOC 3";
|
642
652
|
mso-style-priority: 39;
|
643
653
|
mso-style-unhide: no;
|
644
654
|
mso-style-parent: "TOC 2";
|
@@ -662,6 +672,7 @@ p.MsoToc3, li.MsoToc3, div.MsoToc3 {
|
|
662
672
|
mso-bidi-font-weight: normal; }
|
663
673
|
|
664
674
|
span.MsoFootnoteReference {
|
675
|
+
mso-style-name: "Footnote Reference";
|
665
676
|
mso-style-priority: 99;
|
666
677
|
vertical-align: super; }
|
667
678
|
|
@@ -138,6 +138,7 @@ p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxS
|
|
138
138
|
|
139
139
|
p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
|
140
140
|
{mso-style-noshow:yes;
|
141
|
+
mso-style-name:"Comment Text";
|
141
142
|
mso-style-unhide:no;
|
142
143
|
margin:0cm;
|
143
144
|
margin-bottom:.0001pt;
|
@@ -341,6 +342,7 @@ div.figure, p.figure
|
|
341
342
|
|
342
343
|
h1
|
343
344
|
{mso-style-priority:1;
|
345
|
+
mso-style-name:"Heading 1";
|
344
346
|
mso-style-unhide:no;
|
345
347
|
mso-style-qformat:yes;
|
346
348
|
mso-style-link:"Heading 1 Char";
|
@@ -424,6 +426,7 @@ h1.Annex
|
|
424
426
|
mso-bidi-font-weight:normal;}
|
425
427
|
h2
|
426
428
|
{mso-style-priority:2;
|
429
|
+
mso-style-name:"Heading 2";
|
427
430
|
mso-style-unhide:no;
|
428
431
|
mso-style-qformat:yes;
|
429
432
|
mso-style-parent:"Heading 1";
|
@@ -451,6 +454,7 @@ h2
|
|
451
454
|
mso-bidi-font-weight:normal;}
|
452
455
|
h3
|
453
456
|
{mso-style-priority:3;
|
457
|
+
mso-style-name:"Heading 3";
|
454
458
|
mso-style-unhide:no;
|
455
459
|
mso-style-qformat:yes;
|
456
460
|
mso-style-parent:"Heading 1";
|
@@ -477,6 +481,7 @@ h3
|
|
477
481
|
mso-bidi-font-weight:normal;}
|
478
482
|
h4
|
479
483
|
{mso-style-priority:4;
|
484
|
+
mso-style-name:"Heading 4";
|
480
485
|
mso-style-unhide:no;
|
481
486
|
mso-style-qformat:yes;
|
482
487
|
mso-style-parent:"Heading 3";
|
@@ -503,6 +508,7 @@ h4
|
|
503
508
|
mso-bidi-font-weight:normal;}
|
504
509
|
h5
|
505
510
|
{mso-style-priority:5;
|
511
|
+
mso-style-name:"Heading 5";
|
506
512
|
mso-style-unhide:no;
|
507
513
|
mso-style-qformat:yes;
|
508
514
|
mso-style-parent:"Heading 4";
|
@@ -529,6 +535,7 @@ h5
|
|
529
535
|
mso-bidi-font-weight:normal;}
|
530
536
|
h6
|
531
537
|
{mso-style-priority:6;
|
538
|
+
mso-style-name:"Heading 6";
|
532
539
|
mso-style-unhide:no;
|
533
540
|
mso-style-qformat:yes;
|
534
541
|
mso-style-parent:"Heading 5";
|
@@ -555,6 +562,7 @@ h6
|
|
555
562
|
mso-bidi-font-weight:normal;}
|
556
563
|
p.MsoToc1, li.MsoToc1, div.MsoToc1
|
557
564
|
{mso-style-priority:39;
|
565
|
+
mso-style-name:"TOC 1";
|
558
566
|
mso-style-unhide:no;
|
559
567
|
mso-style-next:Normal;
|
560
568
|
margin-top:6.0pt;
|
@@ -576,6 +584,7 @@ p.MsoToc1, li.MsoToc1, div.MsoToc1
|
|
576
584
|
mso-bidi-font-weight:normal;}
|
577
585
|
p.MsoToc2, li.MsoToc2, div.MsoToc2
|
578
586
|
{mso-style-noshow:yes;
|
587
|
+
mso-style-name:"TOC 2";
|
579
588
|
mso-style-priority:39;
|
580
589
|
mso-style-unhide:no;
|
581
590
|
mso-style-parent:"TOC 1";
|
@@ -599,6 +608,7 @@ p.MsoToc2, li.MsoToc2, div.MsoToc2
|
|
599
608
|
mso-bidi-font-weight:normal;}
|
600
609
|
p.MsoToc3, li.MsoToc3, div.MsoToc3
|
601
610
|
{mso-style-noshow:yes;
|
611
|
+
mso-style-name:"TOC 3";
|
602
612
|
mso-style-priority:39;
|
603
613
|
mso-style-unhide:no;
|
604
614
|
mso-style-parent:"TOC 2";
|
@@ -620,8 +630,9 @@ p.MsoToc3, li.MsoToc3, div.MsoToc3
|
|
620
630
|
mso-ansi-language:EN-GB;
|
621
631
|
font-weight:bold;
|
622
632
|
mso-bidi-font-weight:normal;}
|
623
|
-
span.MsoFootnoteReference
|
624
|
-
|
633
|
+
span.MsoFootnoteReference {
|
634
|
+
mso-style-name:"Footnote Reference";
|
635
|
+
mso-style-priority:99;
|
625
636
|
vertical-align:super;}
|
626
637
|
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
|
627
638
|
{mso-style-noshow:yes;
|
data/lib/metanorma/cc/version.rb
CHANGED
data/metanorma-cc.gemspec
CHANGED
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
|
|
28
28
|
spec.require_paths = ["lib"]
|
29
29
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
30
30
|
|
31
|
-
spec.add_dependency "metanorma-generic", "~> 1.
|
31
|
+
spec.add_dependency "metanorma-generic", "~> 1.11.0"
|
32
32
|
|
33
33
|
spec.add_development_dependency "byebug", "~> 9.1"
|
34
34
|
spec.add_development_dependency "equivalent-xml", "~> 0.6"
|
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.
|
4
|
+
version: 1.8.2
|
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-
|
11
|
+
date: 2021-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: metanorma-generic
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.11.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.11.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: byebug
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -251,7 +251,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
251
251
|
- !ruby/object:Gem::Version
|
252
252
|
version: '0'
|
253
253
|
requirements: []
|
254
|
-
rubygems_version: 3.
|
254
|
+
rubygems_version: 3.2.22
|
255
255
|
signing_key:
|
256
256
|
specification_version: 4
|
257
257
|
summary: metanorma-cc lets you write CalConnect standards in AsciiDoc.
|