Sha256: 27d857f49ac3a5be59a4e1283095de5fa341af395556641648e55841a3438522
Contents?: true
Size: 859 Bytes
Versions: 7
Compression:
Stored size: 859 Bytes
Contents
module Plurimath module Math module Symbols class Daleth < Symbol INPUT = { unicodemath: [["daleth", "ℸ"]], asciimath: [["ℸ"], parsing_wrapper(["daleth"])], mathml: ["ℸ"], latex: [["daleth", "ℸ"]], omml: ["ℸ"], html: ["ℸ"], }.freeze # output methods def to_latex "\\daleth" end def to_asciimath parsing_wrapper("daleth") 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
7 entries across 7 versions & 1 rubygems