Sha256: f0fc36b16edf4ed218234e70217f02bf55571f0bbc1226a0f7eb2cf06bc07aef
Contents?: true
Size: 846 Bytes
Versions: 2
Compression:
Stored size: 846 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.8.12 | lib/plurimath/math/symbols/jmath.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/jmath.rb |