metanorma-standoc 1.6.1 → 1.7.0
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 +4 -4
- data/.github/workflows/rake.yml +66 -0
- data/README.adoc +1 -3
- data/lib/asciidoctor/standoc/base.rb +8 -16
- data/lib/asciidoctor/standoc/basicdoc.rng +50 -3
- data/lib/asciidoctor/standoc/cleanup.rb +52 -4
- data/lib/asciidoctor/standoc/cleanup_block.rb +41 -4
- data/lib/asciidoctor/standoc/cleanup_boilerplate.rb +47 -20
- data/lib/asciidoctor/standoc/cleanup_footnotes.rb +14 -0
- data/lib/asciidoctor/standoc/cleanup_inline.rb +9 -3
- data/lib/asciidoctor/standoc/cleanup_ref.rb +17 -24
- data/lib/asciidoctor/standoc/cleanup_terms.rb +4 -6
- data/lib/asciidoctor/standoc/converter.rb +71 -1
- data/lib/asciidoctor/standoc/front.rb +6 -0
- data/lib/asciidoctor/standoc/front_contributor.rb +8 -4
- data/lib/asciidoctor/standoc/inline.rb +6 -5
- data/lib/asciidoctor/standoc/isodoc.rng +36 -43
- data/lib/asciidoctor/standoc/lists.rb +4 -2
- data/lib/asciidoctor/standoc/macros.rb +55 -59
- data/lib/asciidoctor/standoc/macros_terms.rb +82 -0
- data/lib/asciidoctor/standoc/ref.rb +19 -25
- data/lib/asciidoctor/standoc/ref_sect.rb +4 -3
- data/lib/asciidoctor/standoc/section.rb +21 -20
- data/lib/asciidoctor/standoc/table.rb +12 -0
- data/lib/asciidoctor/standoc/term_lookup_cleanup.rb +86 -0
- data/lib/asciidoctor/standoc/utils.rb +2 -0
- data/lib/metanorma/standoc/version.rb +1 -1
- data/metanorma-standoc.gemspec +5 -3
- data/spec/asciidoctor-standoc/base_spec.rb +14 -4
- data/spec/asciidoctor-standoc/blocks_spec.rb +14 -9
- data/spec/asciidoctor-standoc/cleanup_sections_spec.rb +1519 -0
- data/spec/asciidoctor-standoc/cleanup_spec.rb +416 -1554
- data/spec/asciidoctor-standoc/converter_spec.rb +8 -0
- data/spec/asciidoctor-standoc/inline_spec.rb +2 -5
- data/spec/asciidoctor-standoc/isobib_cache_spec.rb +16 -9
- data/spec/asciidoctor-standoc/lists_spec.rb +10 -1
- data/spec/asciidoctor-standoc/macros_lutaml_spec.rb +80 -0
- data/spec/asciidoctor-standoc/macros_plantuml_spec.rb +307 -0
- data/spec/asciidoctor-standoc/macros_spec.rb +408 -169
- data/spec/asciidoctor-standoc/refs_dl_spec.rb +6 -6
- data/spec/asciidoctor-standoc/refs_spec.rb +112 -65
- data/spec/asciidoctor-standoc/section_spec.rb +17 -12
- data/spec/asciidoctor-standoc/table_spec.rb +86 -0
- data/spec/asciidoctor-standoc/validate_spec.rb +26 -0
- data/spec/fixtures/diagram_definitions.lutaml +22 -0
- data/spec/fixtures/test.exp +121 -0
- data/spec/spec_helper.rb +33 -0
- data/spec/vcr_cassettes/dated_iso_ref_joint_iso_iec.yml +59 -243
- data/spec/vcr_cassettes/isobib_get_123.yml +12 -12
- data/spec/vcr_cassettes/isobib_get_123_1.yml +27 -119
- data/spec/vcr_cassettes/isobib_get_123_1_fr.yml +35 -35
- data/spec/vcr_cassettes/isobib_get_123_2001.yml +14 -60
- data/spec/vcr_cassettes/isobib_get_124.yml +11 -57
- data/spec/vcr_cassettes/rfcbib_get_rfc8341.yml +8 -8
- data/spec/vcr_cassettes/separates_iev_citations_by_top_level_clause.yml +281 -157
- metadata +45 -11
- data/.github/workflows/macos.yml +0 -41
- data/.github/workflows/ubuntu.yml +0 -45
- data/.github/workflows/windows.yml +0 -43
@@ -306,11 +306,11 @@ formattedref::
|
|
306
306
|
<on>2014</on>
|
307
307
|
</date>
|
308
308
|
<date type="published">
|
309
|
-
<from>2014</from>
|
310
|
-
<to>2014</to>
|
309
|
+
<from>2014-04</from>
|
310
|
+
<to>2014-05</to>
|
311
311
|
</date>
|
312
312
|
<date type="accessed">
|
313
|
-
<on>2015</on>
|
313
|
+
<on>2015-05-20</on>
|
314
314
|
</date>
|
315
315
|
<contributor>
|
316
316
|
<role type="publisher"><description>Publisher role</description></role>
|
@@ -624,11 +624,11 @@ series.formattedref.script:: Latn
|
|
624
624
|
<on>2014</on>
|
625
625
|
</date>
|
626
626
|
<date type="published">
|
627
|
-
<from>2014</from>
|
628
|
-
<to>2014</to>
|
627
|
+
<from>2014-04</from>
|
628
|
+
<to>2014-05</to>
|
629
629
|
</date>
|
630
630
|
<date type="accessed">
|
631
|
-
<on>2015</on>
|
631
|
+
<on>2015-05-20</on>
|
632
632
|
</date>
|
633
633
|
<contributor>
|
634
634
|
<role type="publisher"><description>Publisher role</description></role>
|
@@ -223,7 +223,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
223
223
|
end
|
224
224
|
|
225
225
|
it "fetches simple ISO reference" do
|
226
|
-
VCR.use_cassette "isobib_get_123_1"
|
226
|
+
VCR.use_cassette "isobib_get_123_1" do
|
227
227
|
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp( <<~"OUTPUT")
|
228
228
|
#{ISOBIB_BLANK_HDR}
|
229
229
|
[bibliography]
|
@@ -249,7 +249,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
249
249
|
<docidentifier type='URN'>urn:iso:std:iso:123</docidentifier>
|
250
250
|
<docnumber>123</docnumber>
|
251
251
|
<date type='published'>
|
252
|
-
<on>2001</on>
|
252
|
+
<on>2001-05</on>
|
253
253
|
</date>
|
254
254
|
<contributor>
|
255
255
|
<role type='publisher'/>
|
@@ -292,7 +292,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
292
292
|
<docidentifier type='URN'>urn:iso:std:iso:123:stage-90.93:ed-3:en</docidentifier>
|
293
293
|
<docnumber>123</docnumber>
|
294
294
|
<date type='published'>
|
295
|
-
<on>2001</on>
|
295
|
+
<on>2001-05</on>
|
296
296
|
</date>
|
297
297
|
<contributor>
|
298
298
|
<role type='publisher'/>
|
@@ -305,6 +305,13 @@ RSpec.describe Asciidoctor::Standoc do
|
|
305
305
|
<edition>3</edition>
|
306
306
|
<language>en</language>
|
307
307
|
<script>Latn</script>
|
308
|
+
<abstract format='text/plain' language='en' script='Latn'>
|
309
|
+
This International Standard specifies procedures for sampling
|
310
|
+
natural rubber latex concentrate and for sampling syntheticrubber
|
311
|
+
latices and artificial latices. It is also suitable for sampling
|
312
|
+
rubber latex contained in drums, tank cars ortanks. The procedures
|
313
|
+
may also be used for sampling plastics dispersions.
|
314
|
+
</abstract>
|
308
315
|
<status>
|
309
316
|
<stage>90</stage>
|
310
317
|
<substage>93</substage>
|
@@ -350,7 +357,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
350
357
|
<docidentifier type='URN'>urn:iso:std:iso:123</docidentifier>
|
351
358
|
<docnumber>123</docnumber>
|
352
359
|
<date type='published'>
|
353
|
-
<on>2001</on>
|
360
|
+
<on>2001-05</on>
|
354
361
|
</date>
|
355
362
|
<contributor>
|
356
363
|
<role type='publisher'/>
|
@@ -393,7 +400,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
393
400
|
<docidentifier type='URN'>urn:iso:std:iso:123:stage-90.93:ed-3:en</docidentifier>
|
394
401
|
<docnumber>123</docnumber>
|
395
402
|
<date type='published'>
|
396
|
-
<on>2001</on>
|
403
|
+
<on>2001-05</on>
|
397
404
|
</date>
|
398
405
|
<contributor>
|
399
406
|
<role type='publisher'/>
|
@@ -406,6 +413,13 @@ RSpec.describe Asciidoctor::Standoc do
|
|
406
413
|
<edition>3</edition>
|
407
414
|
<language>en</language>
|
408
415
|
<script>Latn</script>
|
416
|
+
<abstract format='text/plain' language='en' script='Latn'>
|
417
|
+
This International Standard specifies procedures for sampling
|
418
|
+
natural rubber latex concentrate and for sampling syntheticrubber
|
419
|
+
latices and artificial latices. It is also suitable for sampling
|
420
|
+
rubber latex contained in drums, tank cars ortanks. The procedures
|
421
|
+
may also be used for sampling plastics dispersions.
|
422
|
+
</abstract>
|
409
423
|
<status>
|
410
424
|
<stage>90</stage>
|
411
425
|
<substage>93</substage>
|
@@ -446,7 +460,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
446
460
|
end
|
447
461
|
|
448
462
|
it "fetches simple ISO reference in French" do
|
449
|
-
VCR.use_cassette "isobib_get_123_1_fr"
|
463
|
+
VCR.use_cassette "isobib_get_123_1_fr" do
|
450
464
|
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp( <<~"OUTPUT")
|
451
465
|
= Document title
|
452
466
|
Author
|
@@ -469,11 +483,11 @@ RSpec.describe Asciidoctor::Standoc do
|
|
469
483
|
<references id='_' normative='true' obligation='informative'>
|
470
484
|
<title>Références normatives</title>
|
471
485
|
<p id='_'>
|
472
|
-
Les documents suivants
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
486
|
+
Les documents suivants cités dans le texte constituent, pour tout ou
|
487
|
+
partie de leur contenu, des exigences du présent document. Pour les
|
488
|
+
références datées, seule l’édition citée s’applique. Pour les références
|
489
|
+
non datées, la dernière édition du document de référence s’applique (y
|
490
|
+
compris les éventuels amendements).
|
477
491
|
</p>
|
478
492
|
<bibitem id='iso123' type='standard'>
|
479
493
|
<fetched>#{Date.today}</fetched>
|
@@ -487,7 +501,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
487
501
|
<docidentifier type='URN'>urn:iso:std:iso:123</docidentifier>
|
488
502
|
<docnumber>123</docnumber>
|
489
503
|
<date type='published'>
|
490
|
-
<on>2001</on>
|
504
|
+
<on>2001-05</on>
|
491
505
|
</date>
|
492
506
|
<contributor>
|
493
507
|
<role type='publisher'/>
|
@@ -531,7 +545,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
531
545
|
<docidentifier type='URN'>urn:iso:std:iso:123:stage-90.93:ed-3:fr</docidentifier>
|
532
546
|
<docnumber>123</docnumber>
|
533
547
|
<date type='published'>
|
534
|
-
<on>2001</on>
|
548
|
+
<on>2001-05</on>
|
535
549
|
</date>
|
536
550
|
<contributor>
|
537
551
|
<role type='publisher'/>
|
@@ -545,6 +559,15 @@ RSpec.describe Asciidoctor::Standoc do
|
|
545
559
|
<language>en</language>
|
546
560
|
<language>fr</language>
|
547
561
|
<script>Latn</script>
|
562
|
+
<abstract format='text/plain' language='fr' script='Latn'>
|
563
|
+
La présente Norme internationale spécifie des méthodes
|
564
|
+
d’échantillonnage pour des concentrés de latex de
|
565
|
+
caoutchoucnaturel et pour échantillonner des latex de caoutchouc
|
566
|
+
synthétique et des latex artificiels. Elle s’applique égalementà
|
567
|
+
l’échantillonnage de latex de caoutchouc contenus dans des fûts,
|
568
|
+
citernes routières ou de stockage. Lemode opératoire peut aussi
|
569
|
+
être utilisé pour l’échantillonnage de dispersions de plastiques.
|
570
|
+
</abstract>
|
548
571
|
<status>
|
549
572
|
<stage>90</stage>
|
550
573
|
<substage>93</substage>
|
@@ -590,7 +613,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
590
613
|
<docidentifier type='URN'>urn:iso:std:iso:123</docidentifier>
|
591
614
|
<docnumber>123</docnumber>
|
592
615
|
<date type='published'>
|
593
|
-
<on>2001</on>
|
616
|
+
<on>2001-05</on>
|
594
617
|
</date>
|
595
618
|
<contributor>
|
596
619
|
<role type='publisher'/>
|
@@ -634,7 +657,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
634
657
|
<docidentifier type='URN'>urn:iso:std:iso:123:stage-90.93:ed-3:fr</docidentifier>
|
635
658
|
<docnumber>123</docnumber>
|
636
659
|
<date type='published'>
|
637
|
-
<on>2001</on>
|
660
|
+
<on>2001-05</on>
|
638
661
|
</date>
|
639
662
|
<contributor>
|
640
663
|
<role type='publisher'/>
|
@@ -648,6 +671,15 @@ RSpec.describe Asciidoctor::Standoc do
|
|
648
671
|
<language>en</language>
|
649
672
|
<language>fr</language>
|
650
673
|
<script>Latn</script>
|
674
|
+
<abstract format='text/plain' language='fr' script='Latn'>
|
675
|
+
La présente Norme internationale spécifie des méthodes
|
676
|
+
d’échantillonnage pour des concentrés de latex de
|
677
|
+
caoutchoucnaturel et pour échantillonner des latex de caoutchouc
|
678
|
+
synthétique et des latex artificiels. Elle s’applique égalementà
|
679
|
+
l’échantillonnage de latex de caoutchouc contenus dans des fûts,
|
680
|
+
citernes routières ou de stockage. Lemode opératoire peut aussi
|
681
|
+
être utilisé pour l’échantillonnage de dispersions de plastiques.
|
682
|
+
</abstract>
|
651
683
|
<status>
|
652
684
|
<stage>90</stage>
|
653
685
|
<substage>93</substage>
|
@@ -733,7 +765,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
733
765
|
it "processes dated ISO reference and joint ISO/IEC references" do
|
734
766
|
# mock_isobib_get_iec12382
|
735
767
|
# mock_isobib_get_124
|
736
|
-
VCR.use_cassette "dated_iso_ref_joint_iso_iec"
|
768
|
+
VCR.use_cassette "dated_iso_ref_joint_iso_iec" do
|
737
769
|
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp( <<~"OUTPUT")
|
738
770
|
#{ISOBIB_BLANK_HDR}
|
739
771
|
[bibliography]
|
@@ -761,7 +793,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
761
793
|
<docidentifier type='URN'>urn:iso:std:iso-iec:tr:12382:stage-90.93:ed-2:en</docidentifier>
|
762
794
|
<docnumber>12382</docnumber>
|
763
795
|
<date type="published">
|
764
|
-
<on>1992</on>
|
796
|
+
<on>1992-12</on>
|
765
797
|
</date>
|
766
798
|
<contributor>
|
767
799
|
<role type="publisher"/>
|
@@ -809,7 +841,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
809
841
|
<docidentifier type='URN'>urn:iso:std:iso:124:stage-90.93:ed-7:en</docidentifier>
|
810
842
|
<docnumber>124</docnumber>
|
811
843
|
<date type="published">
|
812
|
-
<on>2014</on>
|
844
|
+
<on>2014-03</on>
|
813
845
|
</date>
|
814
846
|
<contributor>
|
815
847
|
<role type="publisher"/>
|
@@ -854,7 +886,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
854
886
|
<docidentifier type='URN'>urn:iso:std:iso-iec:tr:12382:stage-90.93:ed-2:en</docidentifier>
|
855
887
|
<docnumber>12382</docnumber>
|
856
888
|
<date type="published">
|
857
|
-
<on>1992</on>
|
889
|
+
<on>1992-12</on>
|
858
890
|
</date>
|
859
891
|
<contributor>
|
860
892
|
<role type="publisher"/>
|
@@ -903,7 +935,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
903
935
|
<docidentifier type='URN'>urn:iso:std:iso:124:stage-90.93:ed-7:en</docidentifier>
|
904
936
|
<docnumber>124</docnumber>
|
905
937
|
<date type="published">
|
906
|
-
<on>2014</on>
|
938
|
+
<on>2014-03</on>
|
907
939
|
</date>
|
908
940
|
<contributor>
|
909
941
|
<role type="publisher"/>
|
@@ -944,7 +976,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
944
976
|
end
|
945
977
|
|
946
978
|
it "declines to fetch individual references" do
|
947
|
-
VCR.use_cassette "dated_iso_ref_joint_iso_iec"
|
979
|
+
VCR.use_cassette "dated_iso_ref_joint_iso_iec" do
|
948
980
|
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp( <<~"OUTPUT")
|
949
981
|
#{ISOBIB_BLANK_HDR}
|
950
982
|
[bibliography]
|
@@ -978,7 +1010,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
978
1010
|
<docidentifier type='URN'>urn:iso:std:iso:124:stage-90.93:ed-7:en</docidentifier>
|
979
1011
|
<docnumber>124</docnumber>
|
980
1012
|
<date type='published'>
|
981
|
-
<on>2014</on>
|
1013
|
+
<on>2014-03</on>
|
982
1014
|
</date>
|
983
1015
|
<contributor>
|
984
1016
|
<role type='publisher'/>
|
@@ -1061,7 +1093,7 @@ OUTPUT
|
|
1061
1093
|
<name>ISO</name>
|
1062
1094
|
</organization>
|
1063
1095
|
</contributor>
|
1064
|
-
<note format="text/plain" type="
|
1096
|
+
<note format="text/plain" type="Unpublished-Status">The standard is in press</note>
|
1065
1097
|
</bibitem>
|
1066
1098
|
<bibitem id="iso125" type="standard">
|
1067
1099
|
<title format="text/plain">Standard</title>
|
@@ -1076,7 +1108,7 @@ OUTPUT
|
|
1076
1108
|
<name>ISO</name>
|
1077
1109
|
</organization>
|
1078
1110
|
</contributor>
|
1079
|
-
<note format="text/plain" type="
|
1111
|
+
<note format="text/plain" type="Unpublished-Status">The standard is in press</note>
|
1080
1112
|
</bibitem>
|
1081
1113
|
<bibitem id='iso126' type='standard'>
|
1082
1114
|
<title format='text/plain'>Standard</title>
|
@@ -1158,7 +1190,7 @@ OUTPUT
|
|
1158
1190
|
|
1159
1191
|
it "processes RFC reference in Normative References" do
|
1160
1192
|
# mock_rfcbib_get_rfc8341
|
1161
|
-
VCR.use_cassette "rfcbib_get_rfc8341"
|
1193
|
+
VCR.use_cassette "rfcbib_get_rfc8341" do
|
1162
1194
|
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp( <<~"OUTPUT")
|
1163
1195
|
#{ISOBIB_BLANK_HDR}
|
1164
1196
|
[bibliography]
|
@@ -1461,53 +1493,68 @@ OUTPUT
|
|
1461
1493
|
== Scope
|
1462
1494
|
|
1463
1495
|
<<iso123>>
|
1464
|
-
|
1465
1496
|
<<iso123,clause=1>>
|
1497
|
+
<<iso124>>
|
1498
|
+
<<iso124,clause=1>>
|
1466
1499
|
|
1467
1500
|
[bibliography]
|
1468
1501
|
== Normative References
|
1469
1502
|
|
1470
|
-
* [[[iso123,repo:(
|
1503
|
+
* [[[iso123,repo:(ab/ISO 123)]]] _Standard_
|
1504
|
+
* [[[iso124,repo:(ab/ISO 124,id)]]] _Standard_
|
1471
1505
|
INPUT
|
1472
1506
|
#{BLANK_HDR}
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1505
|
-
|
1506
|
-
|
1507
|
-
|
1508
|
-
|
1509
|
-
|
1510
|
-
</
|
1507
|
+
<sections>
|
1508
|
+
<clause id='_' type='scope' inline-header='false' obligation='normative'>
|
1509
|
+
<title>Scope</title>
|
1510
|
+
<p id='_'>
|
1511
|
+
<eref type='inline' bibitemid='iso123' citeas='ISO 123'/>
|
1512
|
+
<eref type='inline' bibitemid='iso123' citeas='ISO 123'>
|
1513
|
+
<localityStack>
|
1514
|
+
<locality type='clause'>
|
1515
|
+
<referenceFrom>1</referenceFrom>
|
1516
|
+
</locality>
|
1517
|
+
</localityStack>
|
1518
|
+
</eref>
|
1519
|
+
<eref type='inline' bibitemid='iso124' citeas='id'/>
|
1520
|
+
<eref type='inline' bibitemid='iso124' citeas='id'>
|
1521
|
+
<localityStack>
|
1522
|
+
<locality type='clause'>
|
1523
|
+
<referenceFrom>1</referenceFrom>
|
1524
|
+
</locality>
|
1525
|
+
</localityStack>
|
1526
|
+
</eref>
|
1527
|
+
</p>
|
1528
|
+
</clause>
|
1529
|
+
</sections>
|
1530
|
+
<bibliography>
|
1531
|
+
<references id='_' normative='true' obligation='informative'>
|
1532
|
+
<title>Normative references</title>
|
1533
|
+
<p id='_'>
|
1534
|
+
The following documents are referred to in the text in such a way that
|
1535
|
+
some or all of their content constitutes requirements of this document.
|
1536
|
+
For dated references, only the edition cited applies. For undated
|
1537
|
+
references, the latest edition of the referenced document (including any
|
1538
|
+
amendments) applies.
|
1539
|
+
</p>
|
1540
|
+
<bibitem id='iso123'>
|
1541
|
+
<formattedref format='application/x-isodoc+xml'>
|
1542
|
+
<em>Standard</em>
|
1543
|
+
</formattedref>
|
1544
|
+
<docidentifier type='ISO'>ISO 123</docidentifier>
|
1545
|
+
<docidentifier type='repository'>ab/ISO 123</docidentifier>
|
1546
|
+
<docnumber>123</docnumber>
|
1547
|
+
</bibitem>
|
1548
|
+
<bibitem id='iso124'>
|
1549
|
+
<formattedref format='application/x-isodoc+xml'>
|
1550
|
+
<em>Standard</em>
|
1551
|
+
</formattedref>
|
1552
|
+
<docidentifier>id</docidentifier>
|
1553
|
+
<docidentifier type='repository'>ab/ISO 124</docidentifier>
|
1554
|
+
</bibitem>
|
1555
|
+
</references>
|
1556
|
+
</bibliography>
|
1557
|
+
</standard-document>
|
1511
1558
|
OUTPUT
|
1512
1559
|
end
|
1513
1560
|
|
@@ -34,6 +34,11 @@ RSpec.describe Asciidoctor::Standoc do
|
|
34
34
|
|
35
35
|
== Terms, Definitions, Symbols and Abbreviated Terms
|
36
36
|
|
37
|
+
[.boilerplate]
|
38
|
+
=== Boilerplate
|
39
|
+
|
40
|
+
Boilerplate text
|
41
|
+
|
37
42
|
[.nonterm]
|
38
43
|
=== Introduction
|
39
44
|
|
@@ -111,12 +116,12 @@ RSpec.describe Asciidoctor::Standoc do
|
|
111
116
|
<title>Terms and definitions</title>
|
112
117
|
<p id="_">For the purposes of this document,
|
113
118
|
the following terms and definitions apply.</p>
|
114
|
-
<term id="
|
119
|
+
<term id="term-term1">
|
115
120
|
<preferred>Term1</preferred>
|
116
121
|
</term>
|
117
122
|
</terms>
|
118
123
|
<clause id="_" obligation="normative"><title>Terms, definitions, symbols and abbreviated terms</title>
|
119
|
-
|
124
|
+
<p id='_'>Boilerplate text</p>
|
120
125
|
<clause id="_" inline-header="false" obligation="normative">
|
121
126
|
<title>Introduction</title>
|
122
127
|
<clause id="_" inline-header="false" obligation="normative">
|
@@ -133,14 +138,14 @@ RSpec.describe Asciidoctor::Standoc do
|
|
133
138
|
<title>Intro 4</title>
|
134
139
|
<terms id="_" obligation="normative">
|
135
140
|
<title>Intro 5</title>
|
136
|
-
<term id="
|
141
|
+
<term id="term-term1-1">
|
137
142
|
<preferred>Term1</preferred>
|
138
143
|
</term>
|
139
144
|
</terms>
|
140
145
|
</clause>
|
141
146
|
<terms id="_" obligation="normative">
|
142
147
|
<title>Normal Terms</title>
|
143
|
-
<term id="
|
148
|
+
<term id="term-term2">
|
144
149
|
<preferred>Term2</preferred>
|
145
150
|
</term>
|
146
151
|
</terms>
|
@@ -317,7 +322,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
317
322
|
<title>Terms and definitions</title>
|
318
323
|
<p id="_">For the purposes of this document,
|
319
324
|
the following terms and definitions apply.</p>
|
320
|
-
<term id="
|
325
|
+
<term id="term-term1" language="en" script="Latn">
|
321
326
|
<preferred>Term1</preferred>
|
322
327
|
</term>
|
323
328
|
</terms>
|
@@ -339,14 +344,14 @@ RSpec.describe Asciidoctor::Standoc do
|
|
339
344
|
<title>Intro 4</title>
|
340
345
|
<terms id="_" language="en" script="Latn" obligation="normative">
|
341
346
|
<title>Intro 5</title>
|
342
|
-
<term id="
|
347
|
+
<term id="term-term1-1">
|
343
348
|
<preferred>Term1</preferred>
|
344
349
|
</term>
|
345
350
|
</terms>
|
346
351
|
</clause>
|
347
352
|
<terms id="_" language="en" script="Latn" obligation="normative">
|
348
353
|
<title>Normal Terms</title>
|
349
|
-
<term id="
|
354
|
+
<term id="term-term2">
|
350
355
|
<preferred>Term2</preferred>
|
351
356
|
</term>
|
352
357
|
</terms>
|
@@ -468,7 +473,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
468
473
|
<terms id='_' obligation='normative'>
|
469
474
|
<title>Terms and definitions</title>
|
470
475
|
<p id="_">For the purposes of this document, the following terms and definitions apply.</p>
|
471
|
-
<term id='
|
476
|
+
<term id='term-term1'>
|
472
477
|
<preferred>Term1</preferred>
|
473
478
|
</term>
|
474
479
|
</terms>
|
@@ -477,7 +482,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
477
482
|
<p id='_'>For the purposes of this document, the following terms and definitions apply.</p>
|
478
483
|
<terms id='_' obligation='normative'>
|
479
484
|
<title>Normal Terms</title>
|
480
|
-
<term id='
|
485
|
+
<term id='term-term2'>
|
481
486
|
<preferred>Term2</preferred>
|
482
487
|
</term>
|
483
488
|
</terms>
|
@@ -536,7 +541,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
536
541
|
<terms id='_' obligation='normative'>
|
537
542
|
<title>Terms, definitions and symbols</title>
|
538
543
|
<p id='_'>For the purposes of this document, the following terms and definitions apply.</p>
|
539
|
-
<term id='
|
544
|
+
<term id='term-term'>
|
540
545
|
<preferred>Term</preferred>
|
541
546
|
</term>
|
542
547
|
<definitions id='_' obligation="normative" type="symbols">
|
@@ -565,7 +570,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
565
570
|
<terms id='_' obligation='normative'>
|
566
571
|
<title>Terms, definitions and abbreviated terms</title>
|
567
572
|
<p id='_'>For the purposes of this document, the following terms and definitions apply.</p>
|
568
|
-
<term id='
|
573
|
+
<term id='term-term'>
|
569
574
|
<preferred>Term</preferred>
|
570
575
|
</term>
|
571
576
|
<definitions id='_' obligation="normative" type="abbreviated_terms">
|
@@ -710,7 +715,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
710
715
|
<terms id="_" obligation="normative">
|
711
716
|
<title>Terms and definitions</title><p id="_">For the purposes of this document, the terms and definitions
|
712
717
|
given in <eref bibitemid="iso1234"/> and <eref bibitemid="iso5678"/> and the following apply.</p>
|
713
|
-
<term id="
|
718
|
+
<term id="term-term1">
|
714
719
|
<preferred>Term1</preferred>
|
715
720
|
</term>
|
716
721
|
</terms></sections>
|