Sha256: ded087e101028a0c2eeb351f39c3c94a504365c5ef12b5e6390a9637ec2619a0

Contents?: true

Size: 985 Bytes

Versions: 2

Compression:

Stored size: 985 Bytes

Contents

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

        # output methods
        def to_latex
          "\\smalltriangledown"
        end

        def to_asciimath
          parsing_wrapper("triangledown")
        end

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

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

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

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