metanorma-ietf 3.3.9 → 3.3.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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
- metadata +2 -2
@@ -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 }
|