Sha256: 00412277f72fe043586a3fb4682b702db2f5bcba0f6cd02a5cc855cc7b8d8315

Contents?: true

Size: 923 Bytes

Versions: 2

Compression:

Stored size: 923 Bytes

Contents

module Plurimath
  module Math
    module Symbols
      class Smiley < Symbol
        INPUT = {
          unicodemath: [["&#x263a;"], parsing_wrapper(["smileface", "smiley"])],
          asciimath: [["&#x263a;"], parsing_wrapper(["smileface", "smiley"])],
          mathml: ["&#x263a;"],
          latex: [["smileface", "smiley", "&#x263a;"]],
          omml: ["&#x263a;"],
          html: ["&#x263a;"],
        }.freeze

        # output methods
        def to_latex
          "\\smileface"
        end

        def to_asciimath
          parsing_wrapper("smiley")
        end

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

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

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

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