Sha256: f4af961f13b8d32a938450b48ca462c4136239920a5129f04febf01ebbfa359b
Contents?: true
Size: 1000 Bytes
Versions: 2
Compression:
Stored size: 1000 Bytes
Contents
module Plurimath module Math module Symbols class Lozenge < Symbol INPUT = { unicodemath: [["◊"], parsing_wrapper(["mdlgwhtlozenge", "lozenge"], lang: :unicode)], asciimath: [["◊"], parsing_wrapper(["mdlgwhtlozenge", "lozenge"], lang: :asciimath)], mathml: ["◊"], latex: [["mdlgwhtlozenge", "lozenge", "◊"]], omml: ["◊"], html: ["◊"], }.freeze # output methods def to_latex "\\mdlgwhtlozenge" end def to_asciimath parsing_wrapper("lozenge", lang: :asciimath) 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/lozenge.rb |
plurimath-0.8.13 | lib/plurimath/math/symbols/lozenge.rb |