Sha256: d17741f1b037b2459a7c537fd4970f18b71049e123c9e8ad1250ba6c7c92196a
Contents?: true
Size: 893 Bytes
Versions: 2
Compression:
Stored size: 893 Bytes
Contents
module Plurimath module Math module Symbols class Profsurf < Symbol INPUT = { unicodemath: [["⌓"], parsing_wrapper(["profsurf"])], asciimath: [["⌓"], parsing_wrapper(["profsurf"])], mathml: ["⌓"], latex: [["profsurf", "⌓"]], omml: ["⌓"], html: ["⌓"], }.freeze # output methods def to_latex "\\profsurf" end def to_asciimath parsing_wrapper("profsurf") 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/profsurf.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/profsurf.rb |