Sha256: 74c5a70ebcf20baa67870516139623faaf435d2f9a5472d3ae568295f6b6d12a

Contents?: true

Size: 884 Bytes

Versions: 2

Compression:

Stored size: 884 Bytes

Contents

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

        # output methods
        def to_latex
          parsing_wrapper("zwsp")
        end

        def to_asciimath
          parsing_wrapper("zwsp")
        end

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

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

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

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