Sha256: 5c920730199d11c0fb22efe8c360b520130df173d091e267e613b33d42e64867

Contents?: true

Size: 921 Bytes

Versions: 2

Compression:

Stored size: 921 Bytes

Contents

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

        # output methods
        def to_latex
          "\\euro"
        end

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

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

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

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

        def to_html
          "&#x20ac;"
        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/euro.rb
plurimath-0.8.13 lib/plurimath/math/symbols/euro.rb