Sha256: 9d02e70d307b057359d2003dd01b1203838f158baa99d5556d66a4bb75e8397c
Contents?: true
Size: 964 Bytes
Versions: 16
Compression:
Stored size: 964 Bytes
Contents
module Plurimath module Math module Symbols class Leftwavearrow < Symbol INPUT = { unicodemath: [["leftwavearrow", "↜"]], asciimath: [["↜"], parsing_wrapper(["leftwavearrow"], lang: :asciimath)], mathml: ["↜"], latex: [["leftwavearrow", "↜"]], omml: ["↜"], html: ["↜"], }.freeze # output methods def to_latex(**) "\\leftwavearrow" end def to_asciimath(**) parsing_wrapper("leftwavearrow", lang: :asciimath) end def to_unicodemath(**) Utility.html_entity_to_unicode("↜") end def to_mathml_without_math_tag(_, **) ox_element("mi") << "↜" end def to_omml_without_math_tag(_, **) "↜" end def to_html(**) "↜" end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems