Sha256: c77446054ea3740d597437cc08d1b15c29b7619109af7494311dc59152642310

Contents?: true

Size: 891 Bytes

Versions: 2

Compression:

Stored size: 891 Bytes

Contents

module Plurimath
  module Math
    module Symbols
      class Lnot < Symbol
        INPUT = {
          unicodemath: [["&#xac;", "lnot"], parsing_wrapper(["not"], lang: :unicode)],
          asciimath: [["not", "&#xac;"], parsing_wrapper(["lnot"], lang: :asciimath)],
          mathml: ["&#xac;"],
          latex: [["lnot", "&#xac;"], parsing_wrapper(["not"], lang: :latex)],
          omml: ["&#xac;"],
        }.freeze

        # output methods
        def to_latex
          "\\lnot"
        end

        def to_asciimath
          "not"
        end

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

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

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

        def to_html
          "&#xac;"
        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/lnot.rb
plurimath-0.8.13 lib/plurimath/math/symbols/lnot.rb