Sha256: cb7f18524bb81b07fbc55c681088d888f9811949dd85d5b4ea2d1bf1aace0c71

Contents?: true

Size: 905 Bytes

Versions: 2

Compression:

Stored size: 905 Bytes

Contents

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

        # output methods
        def to_latex
          "\\vrectangle"
        end

        def to_asciimath
          parsing_wrapper("vrectangle")
        end

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

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

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

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