Sha256: 19ba42385c889b55af2caf57b7f739c9a3bcc7ef76ca3ee1e99ba64438c465b3

Contents?: true

Size: 859 Bytes

Versions: 2

Compression:

Stored size: 859 Bytes

Contents

module Plurimath
  module Math
    module Symbols
      class Percent < Symbol
        INPUT = {
          unicodemath: [["&#x25;"], parsing_wrapper(["%", "percent"])],
          asciimath: [["%", "&#x25;"], parsing_wrapper(["percent"])],
          mathml: ["&#x25;"],
          latex: [["percent", "%", "&#x25;"]],
          omml: ["&#x25;"],
          html: ["&#x25;"],
        }.freeze

        # output methods
        def to_latex
          "\\percent"
        end

        def to_asciimath
          "%"
        end

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

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

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

        def to_html
          "&#x25;"
        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/percent.rb
plurimath-0.8.11 lib/plurimath/math/symbols/percent.rb