lib/plurimath/math/symbols/equivdd.rb in plurimath-0.8.12 vs lib/plurimath/math/symbols/equivdd.rb in plurimath-0.8.13

- old
+ new

@@ -1,12 +1,12 @@ module Plurimath module Math module Symbols class Equivdd < Symbol INPUT = { - unicodemath: [["&#x2a78;"], parsing_wrapper(["equivDD"])], - asciimath: [["&#x2a78;"], parsing_wrapper(["equivDD"])], + unicodemath: [["&#x2a78;"], parsing_wrapper(["equivDD"], lang: :unicode)], + asciimath: [["&#x2a78;"], parsing_wrapper(["equivDD"], lang: :asciimath)], mathml: ["&#x2a78;"], latex: [["equivDD", "&#x2a78;"]], omml: ["&#x2a78;"], html: ["&#x2a78;"], }.freeze @@ -15,10 +15,10 @@ def to_latex "\\equivDD" end def to_asciimath - parsing_wrapper("equivDD") + parsing_wrapper("equivDD", lang: :asciimath) end def to_unicodemath Utility.html_entity_to_unicode("&#x2a78;") end