Sha256: b67b0e78292bdb0cb36270abd37d6500c7c13d4d1ea45670e9cc695691f66299

Contents?: true

Size: 901 Bytes

Versions: 7

Compression:

Stored size: 901 Bytes

Contents

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

        # output methods
        def to_latex
          "\\longleftarrow"
        end

        def to_asciimath
          parsing_wrapper("longleftarrow")
        end

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

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

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

        def to_html
          "&#x27f5;"
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
plurimath-0.8.10 lib/plurimath/math/symbols/longleftarrow.rb
plurimath-0.8.9 lib/plurimath/math/symbols/longleftarrow.rb
plurimath-0.8.8 lib/plurimath/math/symbols/longleftarrow.rb
plurimath-0.8.7 lib/plurimath/math/symbols/longleftarrow.rb
plurimath-0.8.6 lib/plurimath/math/symbols/longleftarrow.rb
plurimath-0.8.5 lib/plurimath/math/symbols/longleftarrow.rb
plurimath-0.8.4 lib/plurimath/math/symbols/longleftarrow.rb