Sha256: dbd8381a560de2440606380a53bc8e4ff2193150d2dc6615ffb94ff0e2649bb8

Contents?: true

Size: 955 Bytes

Versions: 2

Compression:

Stored size: 955 Bytes

Contents

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

        # output methods
        def to_latex
          "<"
        end

        def to_asciimath
          "lt"
        end

        def to_unicodemath
          Utility.html_entity_to_unicode("<")
        end

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

        def to_omml_without_math_tag(_)
          "<"
        end

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