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

- old
+ new

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