Sha256: 356ba0bcb8cd6ec57b065caf565cf619ba594c829bde5fab97366ad793819fbc

Contents?: true

Size: 978 Bytes

Versions: 2

Compression:

Stored size: 978 Bytes

Contents

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

        # output methods
        def to_latex
          "\\vDash"
        end

        def to_asciimath
          "models"
        end

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

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

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

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