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", "&#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
          "times"
        end

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

        def to_mathml_without_math_tag(_)
          ox_element("mi") << "&#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/xx.rb
plurimath-0.8.11 lib/plurimath/math/symbols/xx.rb