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", "⊨"], parsing_wrapper(["|==", "vDash"], lang: :unicode)], asciimath: [["models", "|==", "⊨"], parsing_wrapper(["vDash"], lang: :asciimath)], mathml: ["⊨"], latex: [["vDash", "⊨"], parsing_wrapper(["models", "|=="], lang: :latex)], omml: ["⊨"], html: ["⊨"], }.freeze # output methods def to_latex "\\vDash" end def to_asciimath "models" end def to_unicodemath Utility.html_entity_to_unicode("⊨") end def to_mathml_without_math_tag(_) ox_element("mi") << "⊨" end def to_omml_without_math_tag(_) "⊨" end def to_html "⊨" 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 |