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

- old
+ new

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