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

- old
+ new

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