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

- old
+ new

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