Sha256: 3f702a5cfed66df05b97767df2103780950fb703fd3bb0d6f0d9507883c45bc3
Contents?: true
Size: 853 Bytes
Versions: 2
Compression:
Stored size: 853 Bytes
Contents
module Plurimath module Math module Symbols class Times < Symbol INPUT = { unicodemath: [["times", "×"], parsing_wrapper(["xx"])], asciimath: [["times", "xx", "×"]], mathml: ["×"], latex: [["times", "×"], parsing_wrapper(["xx"])], omml: ["×"], html: ["×"], }.freeze # output methods def to_latex "\\times" end def to_asciimath "xx" end def to_unicodemath Utility.html_entity_to_unicode("×") end def to_mathml_without_math_tag(_) ox_element("mo") << "×" 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/times.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/times.rb |