Sha256: de4dc633a455b7abaa73ec0e879ddc938da18aef612784bd97f4291962c3f144

Contents?: true

Size: 844 Bytes

Versions: 9

Compression:

Stored size: 844 Bytes

Contents

module Plurimath
  module Math
    module Symbols
      class Ddots < Symbol
        INPUT = {
          unicodemath: [["ddots", "&#x22f1;"]],
          asciimath: [["ddots", "&#x22f1;"]],
          mathml: ["&#x22f1;"],
          latex: [["ddots", "&#x22f1;"]],
          omml: ["&#x22f1;"],
          html: ["&#x22f1;"],
        }.freeze

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

        def to_asciimath(**)
          "ddots"
        end

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

        def to_mathml_without_math_tag(_, **)
          ox_element("mo") << "&#x22f1;"
        end

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

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

Version data entries

9 entries across 9 versions & 1 rubygems

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