Sha256: d25b4350163b52bbe9cb6b5c72538078dec37280cc0dc8013540883fb3d2b415
Contents?: true
Size: 930 Bytes
Versions: 2
Compression:
Stored size: 930 Bytes
Contents
module Plurimath module Math module Symbols class Models < Symbol INPUT = { unicodemath: [["models", "⊨"], parsing_wrapper(["|==", "vDash"])], asciimath: [["models", "|==", "⊨"], parsing_wrapper(["vDash"])], mathml: ["⊨"], latex: [["vDash", "⊨"], parsing_wrapper(["models", "|=="])], 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.12 | lib/plurimath/math/symbols/models.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/models.rb |