Sha256: c82c2f463c35ee0c0f4262fbca0c372e91dc1e056e4bf30c6215c38995a011b4
Contents?: true
Size: 820 Bytes
Versions: 4
Compression:
Stored size: 820 Bytes
Contents
module Plurimath module Math module Symbols class Ddots < Symbol INPUT = { unicodemath: [["ddots", "⋱"]], asciimath: [["ddots", "⋱"]], mathml: ["⋱"], latex: [["ddots", "⋱"]], omml: ["⋱"], html: ["⋱"], }.freeze # output methods def to_latex "\\ddots" end def to_asciimath "ddots" end def to_unicodemath Utility.html_entity_to_unicode("⋱") end def to_mathml_without_math_tag(_) ox_element("mo") << "⋱" end def to_omml_without_math_tag(_) "⋱" end def to_html "⋱" end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems