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

- old
+ new

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