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