Sha256: 075f9b019f5b0ad2b73b0d3aa8522c593d3a8ec780d0e0d7ac240c907fe615e5

Contents?: true

Size: 957 Bytes

Versions: 2

Compression:

Stored size: 957 Bytes

Contents

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

        # output methods
        def to_latex
          "\\lbrackuend"
        end

        def to_asciimath
          parsing_wrapper("lbrackuend", lang: :asciimath)
        end

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

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

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

        def to_html
          "&#x23a1;"
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
plurimath-0.8.14 lib/plurimath/math/symbols/lbrackuend.rb
plurimath-0.8.13 lib/plurimath/math/symbols/lbrackuend.rb