Sha256: 3a7c21f6bccb292043ed157d20450bead1eabf08cbd7897516b0c3234d08cdf7
Contents?: true
Size: 1006 Bytes
Versions: 14
Compression:
Stored size: 1006 Bytes
Contents
module Plurimath module Math module Symbols class Divideontimes < Symbol INPUT = { unicodemath: [["divideontimes", "Ç"]], asciimath: [["Ç"], parsing_wrapper(["divideontimes"], lang: :asciimath)], mathml: ["Ç"], latex: [["Ç"], parsing_wrapper(["divideontimes"], lang: :latex)], omml: ["Ç"], html: ["Ç"], }.freeze # output methods def to_latex(**) parsing_wrapper("divideontimes", lang: :latex) end def to_asciimath(**) parsing_wrapper("divideontimes", 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
14 entries across 14 versions & 1 rubygems