Sha256: 59857a6af22a14cbd2088e51d48addb361c1c78faf2ebaeb058c57a3fd00aa4e
Contents?: true
Size: 906 Bytes
Versions: 9
Compression:
Stored size: 906 Bytes
Contents
module Plurimath module Math module Symbols class Jmath < Symbol INPUT = { unicodemath: [["jmath", "ȷ"]], asciimath: [["ȷ"], parsing_wrapper(["jmath"], lang: :asciimath)], mathml: ["ȷ"], latex: [["jmath", "ȷ"]], omml: ["ȷ"], html: ["ȷ"], }.freeze # output methods def to_latex(**) "\\jmath" end def to_asciimath(**) parsing_wrapper("jmath", 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
9 entries across 9 versions & 1 rubygems