Sha256: 02249474a51ec2e986a639afb66e964efece42dadbb5d76192329e238dd05f2e
Contents?: true
Size: 915 Bytes
Versions: 7
Compression:
Stored size: 915 Bytes
Contents
module Plurimath module Math module Symbols class Divideontimes < Symbol INPUT = { unicodemath: [["divideontimes", "Ç"]], asciimath: [["Ç"], parsing_wrapper(["divideontimes"])], mathml: ["Ç"], latex: [["Ç"], parsing_wrapper(["divideontimes"])], omml: ["Ç"], html: ["Ç"], }.freeze # output methods def to_latex parsing_wrapper("divideontimes") end def to_asciimath parsing_wrapper("divideontimes") 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