Sha256: 45dd40b796c787d1e899a5eeff4e9f9bb66671a1780c8041951dadc5c2e9dc43
Contents?: true
Size: 916 Bytes
Versions: 9
Compression:
Stored size: 916 Bytes
Contents
module Plurimath module Math module Symbols class Nsucc < Symbol INPUT = { unicodemath: [["nsucc", "⊁"]], asciimath: [["⊁"], parsing_wrapper(["nsucc"], lang: :asciimath)], mathml: ["⊁"], latex: [["nsucc", "⊁"]], omml: ["⊁"], html: ["⊁"], }.freeze # output methods def to_latex(**) "\\nsucc" end def to_asciimath(**) parsing_wrapper("nsucc", 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
9 entries across 9 versions & 1 rubygems