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