Sha256: f3f300b42c3c42f9ec85ca13382c8f4efd052cc2de7f4a88074fd4c8cb91c222
Contents?: true
Size: 916 Bytes
Versions: 15
Compression:
Stored size: 916 Bytes
Contents
module Plurimath module Math module Symbols class Gimel < Symbol INPUT = { unicodemath: [["gimel", "ℷ"]], asciimath: [["ℷ"], parsing_wrapper(["gimel"], lang: :asciimath)], mathml: ["ℷ"], latex: [["gimel", "ℷ"]], omml: ["ℷ"], html: ["ℷ"], }.freeze # output methods def to_latex(**) "\\gimel" end def to_asciimath(**) parsing_wrapper("gimel", 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