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