metanorma-iso 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -8
- data/README.adoc +8 -177
- data/appveyor.yml +30 -0
- data/docs/adopting-spec.adoc +5 -5
- data/docs/adopting-toolchain.adoc +3 -3
- data/docs/asciiiso-syntax.adoc +2 -2
- data/docs/guidance.adoc +7 -7
- data/docs/htmloutput.adoc +4 -4
- data/docs/outputs.adoc +1 -1
- data/docs/quickstart.adoc +19 -19
- data/docs/styling-output-html.adoc +1 -1
- data/docs/styling-output-msword.adoc +3 -3
- data/lib/asciidoctor/iso/biblio.rng +38 -34
- data/lib/asciidoctor/iso/isodoc.rng +1 -0
- data/lib/asciidoctor/iso/reqt.rng +157 -0
- data/lib/asciidoctor/iso/validate_requirements.rb +6 -6
- data/lib/asciidoctor/iso/validate_style.rb +2 -2
- data/lib/isodoc/iso/html/html_iso_titlepage.html +14 -2
- data/lib/isodoc/iso/html/isodoc.scss +1 -1
- data/lib/isodoc/iso/html/style-iso.scss +11 -3
- data/lib/isodoc/iso/html/word_iso_titlepage.html +23 -3
- data/lib/isodoc/iso/metadata.rb +9 -2
- data/lib/metanorma/iso/version.rb +1 -1
- data/metanorma-iso.gemspec +1 -1
- data/spec/assets/iso.doc +20 -15
- data/spec/assets/iso.html +11 -3
- data/spec/isodoc/metadata_spec.rb +2 -2
- data/spec/isodoc/postproc_spec.rb +7 -6
- metadata +5 -3
@@ -21,9 +21,29 @@ style='mso-no-proof:yes'>{{ agency }}/{{ editorialgroup | join: "/" }}</span></p
|
|
21
21
|
|
22
22
|
<p class="MsoNormal" align="right" style='margin-bottom:100.0pt;text-align:right'><span lang="EN-GB">Secretariat: <span style='mso-no-proof:yes'>{{ secretariat }}</span></span></p>
|
23
23
|
|
24
|
-
<p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt'
|
25
|
-
|
26
|
-
|
24
|
+
<p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;font-size:16.0pt'>
|
25
|
+
<span class="title"><b>{{ doctitleintro }}{% if doctitleintro and doctitlemain %} — {% endif %}</b></span><b><span class="subtitle">{{ doctitlemain }}{% if doctitlemain and doctitlepart %} —{% endif %}</b></span>
|
26
|
+
{% if doctitlepart %}
|
27
|
+
</p><p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;font-size:16.0pt'>
|
28
|
+
<br/>
|
29
|
+
{% if doctitlepartlabel %}<span class="partlabel">{{ doctitlepartlabel }}: </span><br/>{% endif %}
|
30
|
+
<span class="part"><b>{{ doctitlepart }}</b></span>
|
31
|
+
{% endif %}
|
32
|
+
</p>
|
33
|
+
|
34
|
+
<br/>
|
35
|
+
<p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;font-size:16.0pt'>
|
36
|
+
<span class="title">{{ docsubtitleintro }}{% if docsubtitleintro and docsubtitlemain %} — {% endif %}</span><span class="subtitle">{{ docsubtitlemain }}{% if docsubtitlemain and docsubtitlepart %} —{% endif %}</span>
|
37
|
+
{% if docsubtitlepart %}
|
38
|
+
</p><p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;font-size:16.0pt'>
|
39
|
+
<br/>
|
40
|
+
{% if docsubtitlepartlabel %}<span class="partlabel">{{ docsubtitlepartlabel }}: </span><br/>{% endif %}
|
41
|
+
<span class="part">{{ docsubtitlepart }}</span>
|
42
|
+
{% endif %}
|
43
|
+
</p>
|
44
|
+
|
45
|
+
|
46
|
+
|
27
47
|
|
28
48
|
<p class="MsoNormal" style='margin-top:100.0pt'><span lang="EN-GB"><o:p> </o:p></span></p>
|
29
49
|
|
data/lib/isodoc/iso/metadata.rb
CHANGED
@@ -66,6 +66,11 @@ module IsoDoc
|
|
66
66
|
suffix
|
67
67
|
end
|
68
68
|
|
69
|
+
def part_prefix(partnum, subpartnum, lang)
|
70
|
+
partnum = "#{partnum}–#{subpartnum}" if partnum && subpartnum
|
71
|
+
"#{part_label(lang)} #{partnum}"
|
72
|
+
end
|
73
|
+
|
69
74
|
def compose_title(main, intro, part, partnum, subpartnum, lang)
|
70
75
|
main = main.nil? ? "" : @c.encode(main.text, :hexadecimal)
|
71
76
|
intro &&
|
@@ -88,7 +93,8 @@ module IsoDoc
|
|
88
93
|
main = compose_title(main, intro, part, partnumber, subpartnumber, "en")
|
89
94
|
set(:doctitle, main)
|
90
95
|
set(:doctitleintro, @c.encode(intro ? intro.text : "", :hexadecimal)) if intro
|
91
|
-
set(:
|
96
|
+
set(:doctitlepartlabel, part_prefix(partnumber, subpartnumber, "en"))
|
97
|
+
set(:doctitlepart, @c.encode(part.text, :hexadecimal)) if part
|
92
98
|
end
|
93
99
|
|
94
100
|
def subtitle(isoxml, _out)
|
@@ -101,7 +107,8 @@ module IsoDoc
|
|
101
107
|
main = compose_title(main, intro, part, partnumber, subpartnumber, "fr")
|
102
108
|
set(:docsubtitle, main)
|
103
109
|
set(:docsubtitleintro, @c.encode(intro ? intro.text : "", :hexadecimal)) if intro
|
104
|
-
set(:
|
110
|
+
set(:docsubtitlepartlabel, part_prefix(partnumber, subpartnumber, "fr"))
|
111
|
+
set(:docsubtitlepart, @c.encode(part.text, :hexadecimal)) if part
|
105
112
|
end
|
106
113
|
end
|
107
114
|
end
|
data/metanorma-iso.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
Formerly known as asciidoctor-iso.
|
21
21
|
DESCRIPTION
|
22
22
|
|
23
|
-
spec.homepage = "https://github.com/
|
23
|
+
spec.homepage = "https://github.com/metanorma/metanorma-iso"
|
24
24
|
spec.license = "BSD-2-Clause"
|
25
25
|
|
26
26
|
spec.bindir = "bin"
|
data/spec/assets/iso.doc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
MIME-Version: 1.0
|
2
|
-
Content-Type: multipart/related; boundary="----=
|
2
|
+
Content-Type: multipart/related; boundary="----=_NextPart_4a7c58ba.b9e4.4c09"
|
3
3
|
|
4
|
-
------=
|
4
|
+
------=_NextPart_4a7c58ba.b9e4.4c09
|
5
5
|
Content-Location: file:///C:/Doc/iso.htm
|
6
6
|
Content-Type: text/html; charset="utf-8"
|
7
7
|
|
@@ -581,7 +581,7 @@ table.MsoISOTable {
|
|
581
581
|
mso-para-margin-bottom: .0001pt;
|
582
582
|
mso-pagination: widow-orphan;
|
583
583
|
border-collapse: collapse;
|
584
|
-
mso-table-layout-alt:
|
584
|
+
/*mso-table-layout-alt:fixed;*/
|
585
585
|
border: solid windowtext 2pt;
|
586
586
|
mso-border-alt: solid windowtext 2pt;
|
587
587
|
mso-yfti-tbllook: 480;
|
@@ -813,15 +813,20 @@ span.note_label, span.example_label, td.example_label, td.note_label {
|
|
813
813
|
<span lang="EN-GB" xml:lang="EN-GB">Secretariat: <span style="mso-no-proof:yes">XXXX</span></span>
|
814
814
|
</p>
|
815
815
|
|
816
|
-
<p class="MsoNormal" align="left" style="text-align:left;line-height:18.0pt;margin-bottom:0.0pt">
|
817
|
-
|
818
|
-
|
819
|
-
</
|
820
|
-
|
821
|
-
|
822
|
-
|
816
|
+
<p class="MsoNormal" align="left" style="text-align:left;line-height:18.0pt;margin-bottom:0.0pt;font-size:16.0pt">
|
817
|
+
<span class="title"><b></b></span><b><span class="subtitle"></span></b>
|
818
|
+
|
819
|
+
</p>
|
820
|
+
|
821
|
+
<br/>
|
822
|
+
<p class="MsoNormal" align="left" style="text-align:left;line-height:18.0pt;margin-bottom:0.0pt;font-size:16.0pt">
|
823
|
+
<span class="title"></span><span class="subtitle"></span>
|
824
|
+
|
823
825
|
</p>
|
824
826
|
|
827
|
+
|
828
|
+
|
829
|
+
|
825
830
|
<p class="MsoNormal" style="margin-top:100.0pt">
|
826
831
|
<span lang="EN-GB" xml:lang="EN-GB">
|
827
832
|
<p class="MsoNormal"> </p>
|
@@ -886,11 +891,11 @@ Switzerland<p class="MsoNormal"></p></span></p>
|
|
886
891
|
<p class="MsoToc1"><span lang="EN-GB" xml:lang="EN-GB"><span style="mso-element:field-begin"></span><span style="mso-spacerun:yes"> </span>TOC
|
887
892
|
\o "1-2" \h \z \u <span style="mso-element:field-separator"></span></span>
|
888
893
|
<span class="MsoHyperlink"><span lang="EN-GB" style="mso-no-proof:yes" xml:lang="EN-GB">
|
889
|
-
<a href="#
|
894
|
+
<a href="#_Toc953690943">Foreword<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">
|
890
895
|
<span style="mso-tab-count:1 dotted">. </span>
|
891
896
|
</span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">
|
892
897
|
<span style="mso-element:field-begin"></span></span>
|
893
|
-
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"> PAGEREF
|
898
|
+
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"> PAGEREF _Toc953690943 \h </span>
|
894
899
|
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"><span style="mso-element:field-separator"></span></span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">1</span>
|
895
900
|
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"></span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"><span style="mso-element:field-end"></span></span></a></span></span></p>
|
896
901
|
|
@@ -927,7 +932,7 @@ Switzerland<p class="MsoNormal"></p></span></p>
|
|
927
932
|
</html>
|
928
933
|
|
929
934
|
|
930
|
-
------=
|
935
|
+
------=_NextPart_4a7c58ba.b9e4.4c09
|
931
936
|
Content-Location: file:///C:/Doc/iso_files/filelist.xml
|
932
937
|
Content-Transfer-Encoding: base64
|
933
938
|
Content-Type: application/xml
|
@@ -937,7 +942,7 @@ ICAgICAgIDxvOk1haW5GaWxlIEhSZWY9Ii4uL3NwZWMvYXNzZXRzL2lzby5odG0iLz4gIDxvOkZp
|
|
937
942
|
bGUgSFJlZj0iZmlsZWxpc3QueG1sIi8+CiAgPG86RmlsZSBIUmVmPSJoZWFkZXIuaHRtbCIvPgo8
|
938
943
|
L3htbD4K
|
939
944
|
|
940
|
-
------=
|
945
|
+
------=_NextPart_4a7c58ba.b9e4.4c09
|
941
946
|
Content-Location: file:///C:/Doc/iso_files/header.html
|
942
947
|
Content-Transfer-Encoding: base64
|
943
948
|
Content-Type: text/html charset="utf-8"
|
@@ -1130,4 +1135,4 @@ cD4NCg0KPHAgY2xhc3M9TXNvRm9vdGVyPjxzcGFuIGxhbmc9RU4tQVUgc3R5bGU9J2ZvbnQtc2l6
|
|
1130
1135
|
ZToxMC4wcHQ7Jz7CqQ0KJm5ic3A7Jm5ic3A74oCTIEFsbCByaWdodHMgcmVzZXJ2ZWQ8bzpwPjwv
|
1131
1136
|
bzpwPjwvc3Bhbj48L3A+DQoNCjwvZGl2Pg0KDQoNCg0KPC9ib2R5Pg0KDQo8L2h0bWw+DQo=
|
1132
1137
|
|
1133
|
-
------=
|
1138
|
+
------=_NextPart_4a7c58ba.b9e4.4c09--
|
data/spec/assets/iso.html
CHANGED
@@ -33,9 +33,17 @@
|
|
33
33
|
|
34
34
|
<p class="coverpage_techcommittee"><a name="CVP_Secretariat_Loca" id="CVP_Secretariat_Loca">Secretariat</a>: XXXX</p>
|
35
35
|
|
36
|
-
<div class="doctitle-en"
|
36
|
+
<div class="doctitle-en">
|
37
|
+
<div><span class="title"></span><span class="subtitle"></span>
|
38
|
+
|
39
|
+
</div>
|
40
|
+
</div>
|
37
41
|
|
38
|
-
<div class="doctitle-fr"
|
42
|
+
<div class="doctitle-fr">
|
43
|
+
<div><span class="title"></span><span class="subtitle"></span>
|
44
|
+
|
45
|
+
</div>
|
46
|
+
</div>
|
39
47
|
|
40
48
|
<div class="coverpage_docstage">
|
41
49
|
|
@@ -105,7 +113,7 @@ at the address below or ISO’s member body in the country of the requester
|
|
105
113
|
}
|
106
114
|
});
|
107
115
|
</script>
|
108
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.
|
116
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=AM_HTMLorMML" async="async"></script>
|
109
117
|
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script><script>
|
110
118
|
//TOC generation
|
111
119
|
$('#toc').toc({
|
@@ -71,7 +71,7 @@ RSpec.describe IsoDoc::Iso::Metadata do
|
|
71
71
|
</bibdata>
|
72
72
|
</iso-standard>
|
73
73
|
INPUT
|
74
|
-
{:accesseddate=>"2012", :activateddate=>"2013", :agency=>"ISO", :authors=>[], :authors_affiliations=>{}, :confirmeddate=>"XXX", :createddate=>"2010–2011", :docnumber=>"ISO/PreCD3 17301-1", :docsubtitle=>"Céréales et légumineuses — Spécification et méthodes d'essai — Partie 1: Riz", :docsubtitleintro=>"Céréales et légumineuses", :docsubtitlemain=>"Spécification et méthodes d'essai", :docsubtitlepart=>"Partie 1
|
74
|
+
{:accesseddate=>"2012", :activateddate=>"2013", :agency=>"ISO", :authors=>[], :authors_affiliations=>{}, :confirmeddate=>"XXX", :createddate=>"2010–2011", :docnumber=>"ISO/PreCD3 17301-1", :docsubtitle=>"Céréales et légumineuses — Spécification et méthodes d'essai — Partie 1: Riz", :docsubtitleintro=>"Céréales et légumineuses", :docsubtitlemain=>"Spécification et méthodes d'essai", :docsubtitlepart=>"Riz", :docsubtitlepartlabel=>"Partie 1", :doctitle=>"Cereals and pulses — Specifications and test methods — Part 1: Rice", :doctitleintro=>"Cereals and pulses", :doctitlemain=>"Specifications and test methods", :doctitlepart=>"Rice", :doctitlepartlabel=>"Part 1", :doctype=>"International Standard", :docyear=>"2016", :draft=>"0.4", :draftinfo=>" (draft 0.4, 2016-05-01)", :edition=>"2", :editorialgroup=>["TC 34", "SC 4", "WG 3"], :ics=>"XXX", :implementeddate=>"XXX", :issueddate=>"XXX", :obsoleteddate=>"2014", :obsoletes=>nil, :obsoletes_part=>nil, :publisheddate=>"2011", :receiveddate=>"XXX", :revdate=>"2016-05-01", :sc=>"SC 4", :secretariat=>"GB", :stage=>"30", :stage_int=>30, :stageabbr=>"PreCD3", :tc=>"TC 34", :tc_docnumber=>"17301", :unpublished=>true, :updateddate=>"XXX", :wg=>"WG 3"}
|
75
75
|
OUTPUT
|
76
76
|
end
|
77
77
|
|
@@ -144,7 +144,7 @@ OUTPUT
|
|
144
144
|
</bibdata>
|
145
145
|
</iso-standard>
|
146
146
|
INPUT
|
147
|
-
{:accesseddate=>"XXX", :agency=>"ISO/IEC", :authors=>[], :authors_affiliations=>{}, :confirmeddate=>"XXX", :createddate=>"XXX", :docnumber=>"ISO/IEC/CD 17301-1-3", :docsubtitle=>"Céréales et légumineuses — Spécification et méthodes d'essai — Partie 1–3: Riz", :docsubtitleintro=>"Céréales et légumineuses", :docsubtitlemain=>"Spécification et méthodes d'essai", :docsubtitlepart=>"Partie 1–3
|
147
|
+
{:accesseddate=>"XXX", :agency=>"ISO/IEC", :authors=>[], :authors_affiliations=>{}, :confirmeddate=>"XXX", :createddate=>"XXX", :docnumber=>"ISO/IEC/CD 17301-1-3", :docsubtitle=>"Céréales et légumineuses — Spécification et méthodes d'essai — Partie 1–3: Riz", :docsubtitleintro=>"Céréales et légumineuses", :docsubtitlemain=>"Spécification et méthodes d'essai", :docsubtitlepart=>"Riz", :docsubtitlepartlabel=>"Partie 1–3", :doctitle=>"Cereals and pulses — Specifications and test methods — Part 1–3: Rice", :doctitleintro=>"Cereals and pulses", :doctitlemain=>"Specifications and test methods", :doctitlepart=>"Rice", :doctitlepartlabel=>"Part 1–3", :doctype=>"International Standard", :docyear=>"2016", :draft=>nil, :draftinfo=>"", :edition=>nil, :editorialgroup=>["ABC 34", "DEF 4", "GHI 3"], :ics=>"1.2.3, 1.2.3", :implementeddate=>"XXX", :issueddate=>"XXX", :obsoleteddate=>"XXX", :obsoletes=>"IEC 8121", :obsoletes_part=>"3.1", :publisheddate=>"XXX", :receiveddate=>"XXX", :revdate=>nil, :sc=>"DEF 4", :secretariat=>"XXXX", :stage=>"60", :stage_int=>60, :stageabbr=>"IS", :tc=>"ABC 34", :tc_docnumber=>"17301", :unpublished=>false, :updateddate=>"XXX", :wg=>"GHI 3"}
|
148
148
|
OUTPUT
|
149
149
|
end
|
150
150
|
|
@@ -24,7 +24,7 @@ RSpec.describe IsoDoc do
|
|
24
24
|
expect(File.exist?("test.html")).to be true
|
25
25
|
html = File.read("test.html")
|
26
26
|
expect(html).to match(%r{<title>Cereals and pulses\ \— Specifications and test methods\ \— Rice</title>})
|
27
|
-
expect(html).to match(%r{cdnjs\.cloudflare\.com/ajax/libs/mathjax/
|
27
|
+
expect(html).to match(%r{cdnjs\.cloudflare\.com/ajax/libs/mathjax/})
|
28
28
|
expect(html).to match(/delimiters: \[\['\(#\(', '\)#\)'\]\]/)
|
29
29
|
end
|
30
30
|
|
@@ -50,7 +50,7 @@ RSpec.describe IsoDoc do
|
|
50
50
|
expect(File.exist?("test.html")).to be true
|
51
51
|
html = File.read("test.html")
|
52
52
|
expect(html).to match(%r{<title>Cereals and pulses\ \— Specifications and test methods\ \— Rice</title>})
|
53
|
-
expect(html).to match(%r{cdnjs\.cloudflare\.com/ajax/libs/mathjax/
|
53
|
+
expect(html).to match(%r{cdnjs\.cloudflare\.com/ajax/libs/mathjax/})
|
54
54
|
expect(html).to match(/delimiters: \[\['\(#\(', '\)#\)'\]\]/)
|
55
55
|
end
|
56
56
|
|
@@ -325,6 +325,7 @@ RSpec.describe IsoDoc do
|
|
325
325
|
it "moves images in HTML" do
|
326
326
|
FileUtils.rm_f "test.html"
|
327
327
|
FileUtils.rm_rf "_images"
|
328
|
+
FileUtils.rm_rf "test_htmlimages"
|
328
329
|
IsoDoc::Iso::HtmlConvert.new({wordstylesheet: "spec/assets/word.css", htmlstylesheet: "spec/assets/html.css"}).convert("test", <<~"INPUT", false)
|
329
330
|
<iso-standard xmlns="http://riboseinc.com/isoxml">
|
330
331
|
<preface><foreword>
|
@@ -339,16 +340,16 @@ RSpec.describe IsoDoc do
|
|
339
340
|
INPUT
|
340
341
|
html = File.read("test.html").sub(/^.*<main class="main-section">/m, '<main class="main-section">').
|
341
342
|
sub(%r{</main>.*$}m, "</main>")
|
342
|
-
expect(`ls
|
343
|
+
expect(`ls test_htmlimages`).to match(/\.png$/)
|
343
344
|
expect(html.gsub(/\/[0-9a-f-]+\.png/, "/_.png")).to be_equivalent_to <<~"OUTPUT"
|
344
345
|
<main class="main-section"><button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
|
345
346
|
<br />
|
346
347
|
<div>
|
347
348
|
<h1 class="ForewordTitle">Foreword</h1>
|
348
349
|
<div id="_" class="figure">
|
349
|
-
<img src="
|
350
|
-
<img src="
|
351
|
-
<img src="
|
350
|
+
<img src="test_htmlimages/_.png" height="776" width="922" />
|
351
|
+
<img src="test_htmlimages/_.png" height="800" width="53" />
|
352
|
+
<img src="test_htmlimages/_.png" height="83" width="99" />
|
352
353
|
<p class="FigureTitle" align="center">Figure 1 — Split-it-right sample divider</p></div>
|
353
354
|
</div>
|
354
355
|
<p class="zzSTDTitle1"></p>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-iso
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-03-
|
11
|
+
date: 2019-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: asciidoctor
|
@@ -260,6 +260,7 @@ files:
|
|
260
260
|
- Makefile
|
261
261
|
- README.adoc
|
262
262
|
- Rakefile
|
263
|
+
- appveyor.yml
|
263
264
|
- asciidoctor-iso.gemspec.old
|
264
265
|
- bin/rspec
|
265
266
|
- docs/adopting-spec.adoc
|
@@ -283,6 +284,7 @@ files:
|
|
283
284
|
- lib/asciidoctor/iso/isodoc.rng
|
284
285
|
- lib/asciidoctor/iso/isostandard.rnc
|
285
286
|
- lib/asciidoctor/iso/isostandard.rng
|
287
|
+
- lib/asciidoctor/iso/reqt.rng
|
286
288
|
- lib/asciidoctor/iso/section.rb
|
287
289
|
- lib/asciidoctor/iso/validate.rb
|
288
290
|
- lib/asciidoctor/iso/validate_requirements.rb
|
@@ -358,7 +360,7 @@ files:
|
|
358
360
|
- spec/isodoc/xref_spec.rb
|
359
361
|
- spec/metanorma/processor_spec.rb
|
360
362
|
- spec/spec_helper.rb
|
361
|
-
homepage: https://github.com/
|
363
|
+
homepage: https://github.com/metanorma/metanorma-iso
|
362
364
|
licenses:
|
363
365
|
- BSD-2-Clause
|
364
366
|
metadata: {}
|