Sha256: 9f7a64403df2fa12dfc809e9eb8c4a73e8a7df2ae84f8e686c77a5d9dd339d09
Contents?: true
Size: 914 Bytes
Versions: 7
Compression:
Stored size: 914 Bytes
Contents
module Plurimath module Math module Symbols class Circleulquad < Symbol INPUT = { unicodemath: [["◴"], parsing_wrapper(["circleulquad"])], asciimath: [["◴"], parsing_wrapper(["circleulquad"])], mathml: ["◴"], latex: [["circleulquad", "◴"]], omml: ["◴"], html: ["◴"], }.freeze # output methods def to_latex "\\circleulquad" end def to_asciimath parsing_wrapper("circleulquad") 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
7 entries across 7 versions & 1 rubygems