Sha256: 1512a8b1c641272616b83c55a82dc73ec8b607925144dcb739b85f361040b14a

Contents?: true

Size: 1017 Bytes

Versions: 10

Compression:

Stored size: 1017 Bytes

Contents

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

        # output methods
        def to_latex(**)
          "\\acwunderarcarrow"
        end

        def to_asciimath(**)
          parsing_wrapper("acwunderarcarrow", lang: :asciimath)
        end

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

        def to_mathml_without_math_tag(_, **)
          ox_element("mi") << "&#x293b;"
        end

        def to_omml_without_math_tag(_, **)
          "&#x293b;"
        end

        def to_html(**)
          "&#x293b;"
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
plurimath-0.8.24 lib/plurimath/math/symbols/acwunderarcarrow.rb
plurimath-0.8.23 lib/plurimath/math/symbols/acwunderarcarrow.rb
plurimath-0.8.22 lib/plurimath/math/symbols/acwunderarcarrow.rb
plurimath-0.8.21 lib/plurimath/math/symbols/acwunderarcarrow.rb
plurimath-0.8.20 lib/plurimath/math/symbols/acwunderarcarrow.rb
plurimath-0.8.19 lib/plurimath/math/symbols/acwunderarcarrow.rb
plurimath-0.8.18 lib/plurimath/math/symbols/acwunderarcarrow.rb
plurimath-0.8.17 lib/plurimath/math/symbols/acwunderarcarrow.rb
plurimath-0.8.16 lib/plurimath/math/symbols/acwunderarcarrow.rb
plurimath-0.8.15 lib/plurimath/math/symbols/acwunderarcarrow.rb