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: [["⤘"], parsing_wrapper(["nVtwoheadrightarrowtail"])],
- asciimath: [["⤘"], parsing_wrapper(["nVtwoheadrightarrowtail"])],
+ unicodemath: [["⤘"], parsing_wrapper(["nVtwoheadrightarrowtail"], lang: :unicode)],
+ asciimath: [["⤘"], parsing_wrapper(["nVtwoheadrightarrowtail"], lang: :asciimath)],
mathml: ["⤘"],
latex: [["nVtwoheadrightarrowtail", "⤘"]],
omml: ["⤘"],
html: ["⤘"],
}.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("⤘")
end