metanorma-nist 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.adoc +8 -8
- data/lib/asciidoctor/nist/basicdoc.rng +992 -0
- data/lib/asciidoctor/nist/biblio.rng +4 -4
- data/lib/asciidoctor/nist/converter.rb +10 -7
- data/lib/asciidoctor/nist/front.rb +0 -8
- data/lib/asciidoctor/nist/isodoc.rng +52 -388
- data/lib/asciidoctor/nist/isostandard.rng +77 -23
- data/lib/asciidoctor/nist/nist.rng +6 -8
- data/lib/isodoc/nist/metadata.rb +1 -1
- data/lib/metanorma/nist/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e605d8d42f719740cb4c9de5c9cc7cecfe0e71566067ece25d619f1ce1fb095a
|
4
|
+
data.tar.gz: 78ca48431b9d32a30ae5cf8de2ed6b88e364e3c468b4c1fa64db89155a0e675c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67bc90cf9c955322fc823240df276d139fb1fcdd08b318c509f003945dcad9684bdd093bc39e49a1a70940c200dd11c288234bfb0231a9aa4af1af5a1aaa6a68
|
7
|
+
data.tar.gz: a3e78549156b699cd83fae721ce4d218de9205779453f16af6fa4b45e285a4306dc936439e49aa63f9f983e24b3bfe827f0550ff00be78c54f4443f4e845037d
|
data/README.adoc
CHANGED
@@ -522,12 +522,12 @@ of Standards and Technology (NIST) promotes the U.S. economy and public welfare.
|
|
522
522
|
|
523
523
|
=== Executive Summary
|
524
524
|
|
525
|
-
This is any section that appears with the
|
525
|
+
This is any section that appears with the role attribute `[.executive-summary]`.
|
526
526
|
It is rendered after all other preface sections:
|
527
527
|
|
528
528
|
[source,asciidoctor]
|
529
529
|
----
|
530
|
-
[executive-summary]
|
530
|
+
[.executive-summary]
|
531
531
|
== Executive Summary
|
532
532
|
|
533
533
|
This is an executive summary
|
@@ -541,11 +541,11 @@ title "Glossary" or "Terminology" is treated as a Terms & Definitions section.
|
|
541
541
|
|
542
542
|
=== Pseudocode
|
543
543
|
|
544
|
-
Pseudocode shall be marked up as an example, with
|
544
|
+
Pseudocode shall be marked up as an example, with role attribute `[.pseudocode]`:
|
545
545
|
|
546
546
|
[source,asciidoctor]
|
547
547
|
----
|
548
|
-
[pseudocode]
|
548
|
+
[.pseudocode]
|
549
549
|
====
|
550
550
|
_Input: S=(s1,...,sL)_
|
551
551
|
|
@@ -593,12 +593,12 @@ which will be converted to the tag `nistvariable` in Metanorma XML:
|
|
593
593
|
|
594
594
|
=== Errata
|
595
595
|
|
596
|
-
Errata are marked up as an Asciidoctor table with
|
596
|
+
Errata are marked up as an Asciidoctor table with role attribute `[.errata]`.
|
597
597
|
Errata tables must have a header row containing the headings _Date, Type, Change, Pages_:
|
598
598
|
|
599
599
|
[source, asciidoctor]
|
600
600
|
----
|
601
|
-
[errata]
|
601
|
+
[.errata]
|
602
602
|
|===
|
603
603
|
|Date |Type |Change |Page
|
604
604
|
|
@@ -608,11 +608,11 @@ Errata tables must have a header row containing the headings _Date, Type, Change
|
|
608
608
|
|
609
609
|
=== Glosaries
|
610
610
|
|
611
|
-
Glossaries are given as definition lists with
|
611
|
+
Glossaries are given as definition lists with role attribute `[.glossary]`:
|
612
612
|
|
613
613
|
[source,asciidoctor]
|
614
614
|
----
|
615
|
-
[glossary]
|
615
|
+
[.glossary]
|
616
616
|
stem:[A= {x_1, x_2, ..., x_k}]:: The alphabet, i.e., the set of all possible symbols that a (digitized) noise source produces.
|
617
617
|
----
|
618
618
|
|