metanorma-ietf 3.3.9 → 3.4.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/lib/isodoc/ietf/references.rb +4 -0
- data/lib/isodoc/ietf/terms.rb +31 -8
- data/lib/metanorma/ietf/basicdoc.rng +909 -464
- data/lib/metanorma/ietf/biblio-standoc.rng +100 -20
- data/lib/metanorma/ietf/biblio.rng +899 -333
- data/lib/metanorma/ietf/converter.rb +2 -2
- data/lib/metanorma/ietf/isodoc.rng +1031 -912
- data/lib/metanorma/ietf/processor.rb +1 -1
- data/lib/metanorma/ietf/relaton-ietf.rng +1 -0
- data/lib/metanorma/ietf/reqt.rng +94 -72
- data/lib/metanorma/ietf/version.rb +1 -1
- data/metanorma-ietf.gemspec +1 -1
- metadata +4 -4
@@ -52,8 +52,8 @@ module Metanorma
|
|
52
52
|
when :single then xml << "'#{node.text}'"
|
53
53
|
when :superscript then xml.sup { |s| s << node.text }
|
54
54
|
when :subscript then xml.sub { |s| s << node.text }
|
55
|
-
when :asciimath then stem_parse(node.text, xml, :asciimath,
|
56
|
-
when :latexmath then stem_parse(node.text, xml, :latexmath,
|
55
|
+
when :asciimath then stem_parse(node.text, xml, :asciimath, node)
|
56
|
+
when :latexmath then stem_parse(node.text, xml, :latexmath, node)
|
57
57
|
else
|
58
58
|
case node.role
|
59
59
|
when "bcp14" then xml.bcp14 { |s| s << node.text.upcase }
|