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

- old
+ new

@@ -2,11 +2,11 @@ module Math module Symbols class Leftharpoonup < Symbol INPUT = { unicodemath: [["leftharpoonup", "&#x21bc;"]], - asciimath: [["&#x21bc;"], parsing_wrapper(["leftharpoonup"])], + asciimath: [["&#x21bc;"], parsing_wrapper(["leftharpoonup"], lang: :asciimath)], mathml: ["&#x21bc;"], latex: [["leftharpoonup", "&#x21bc;"]], omml: ["&#x21bc;"], html: ["&#x21bc;"], }.freeze @@ -15,10 +15,10 @@ def to_latex "\\leftharpoonup" end def to_asciimath - parsing_wrapper("leftharpoonup") + parsing_wrapper("leftharpoonup", lang: :asciimath) end def to_unicodemath Utility.html_entity_to_unicode("&#x21bc;") end