Sha256: c57c39af783e9a0ba089639a825768f5755aa1b28b06ab513d0b591aa2239842

Contents?: true

Size: 933 Bytes

Versions: 2

Compression:

Stored size: 933 Bytes

Contents

module Plurimath
  module Math
    module Symbols
      class Eqqsim < Symbol
        INPUT = {
          unicodemath: [["&#x2a73;"], parsing_wrapper(["eqqsim"], lang: :unicode)],
          asciimath: [["&#x2a73;"], parsing_wrapper(["eqqsim"], lang: :asciimath)],
          mathml: ["&#x2a73;"],
          latex: [["eqqsim", "&#x2a73;"]],
          omml: ["&#x2a73;"],
          html: ["&#x2a73;"],
        }.freeze

        # output methods
        def to_latex
          "\\eqqsim"
        end

        def to_asciimath
          parsing_wrapper("eqqsim", lang: :asciimath)
        end

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

        def to_mathml_without_math_tag(_)
          ox_element("mi") << "&#x2a73;"
        end

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

        def to_html
          "&#x2a73;"
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
plurimath-0.8.14 lib/plurimath/math/symbols/eqqsim.rb
plurimath-0.8.13 lib/plurimath/math/symbols/eqqsim.rb