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

- old
+ new

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