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

- old
+ new

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