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