Sha256: 2f4d6a0e9bd16fbdd08938b17592900ed8a602a419379b752d7e630b79e7dab5
Contents?: true
Size: 1016 Bytes
Versions: 10
Compression:
Stored size: 1016 Bytes
Contents
module Plurimath module Math module Symbols class Nsucceq < Symbol INPUT = { unicodemath: [["nsucccurlyeq", "⋡"], parsing_wrapper(["nsucceq"], lang: :unicode)], asciimath: [["⋡"], parsing_wrapper(["nsucccurlyeq", "nsucceq"], lang: :asciimath)], mathml: ["⋡"], latex: [["nsucccurlyeq", "nsucceq", "⋡"]], omml: ["⋡"], html: ["⋡"], }.freeze # output methods def to_latex(**) "\\nsucccurlyeq" end def to_asciimath(**) parsing_wrapper("nsucceq", 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
10 entries across 10 versions & 1 rubygems