metanorma-iho 1.1.4 → 1.1.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 +4 -4
- data/lib/isodoc/iho/base_convert.rb +0 -9
- data/lib/isodoc/iho/iho.specification.xsl +212 -28
- data/lib/isodoc/iho/iho.standard.xsl +212 -28
- data/lib/isodoc/iho/presentation_xml_convert.rb +7 -26
- data/lib/isodoc/iho/xref.rb +0 -1
- data/lib/metanorma/iho/converter.rb +2 -13
- data/lib/metanorma/iho/iho.rng +0 -5
- data/lib/metanorma/iho/isodoc.rng +16 -1
- data/lib/metanorma/iho/relaton-iho.rng +3 -0
- data/lib/metanorma/iho/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9bbdc151276741f70382315726325aae9023505ab297122f94ea813177f00a48
|
4
|
+
data.tar.gz: 8f129aa25aefd34ff14829b2756e9a251bf2bbfd61ff172b508103acdb4f7253
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ddaf31fb3a32ddba9ac68d2d1983d97f7da3dd28149726e6cecad79c493f75087359e441ae9a9b41b73d45f3f2a1197e3faeaa431a8236f39cd51b6a36f1b27
|
7
|
+
data.tar.gz: 041dd80afbfa277152b3ccf39a1b998f1dfe1baf64ddc0a038399b1118f3d39e91382857910dcafaabe308eccb57dc4e9dd6aea70280a9801ba820363be4e618
|
@@ -1,15 +1,6 @@
|
|
1
1
|
module IsoDoc
|
2
2
|
module Iho
|
3
3
|
module BaseConvert
|
4
|
-
# terms not defined in standoc
|
5
|
-
def error_parse(node, out)
|
6
|
-
case node.name
|
7
|
-
when "appendix" then clause_parse(node, out)
|
8
|
-
else
|
9
|
-
super
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
4
|
def configuration
|
14
5
|
Metanorma::Iho.configuration
|
15
6
|
end
|