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", "&#xd7;"], parsing_wrapper(["xx"])],
          asciimath: [["times", "xx", "&#xd7;"]],
          mathml: ["&#xd7;"],
          latex: [["times", "&#xd7;"], parsing_wrapper(["xx"])],
          omml: ["&#xd7;"],
          html: ["&#xd7;"],
        }.freeze

        # output methods
        def to_latex
          "\\times"
        end

        def to_asciimath
          "xx"
        end

        def to_unicodemath
          Utility.html_entity_to_unicode("&#xd7;")
        end

        def to_mathml_without_math_tag(_)
          ox_element("mo") << "&#xd7;"
        end

        def to_omml_without_math_tag(_)
          "&#xd7;"
        end

        def to_html
          "&#xd7;"
        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