Sha256: a9e1380295e326150b3223c2699793892e7c5da695f605caec684090bc4baf4b
Contents?: true
Size: 853 Bytes
Versions: 2
Compression:
Stored size: 853 Bytes
Contents
module Plurimath module Math module Symbols class Xx < 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 "times" 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/xx.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/xx.rb |