Sha256: a044ceb5362813bf6b3344dbc7dbeb9a2e4ad8b6a7773b7548ce82120e93a5ce
Contents?: true
Size: 993 Bytes
Versions: 14
Compression:
Stored size: 993 Bytes
Contents
module Plurimath module Math module Symbols class Circleurquad < Symbol INPUT = { unicodemath: [["◷"], parsing_wrapper(["circleurquad"], lang: :unicode)], asciimath: [["◷"], parsing_wrapper(["circleurquad"], lang: :asciimath)], mathml: ["◷"], latex: [["circleurquad", "◷"]], omml: ["◷"], html: ["◷"], }.freeze # output methods def to_latex(**) "\\circleurquad" end def to_asciimath(**) parsing_wrapper("circleurquad", 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
14 entries across 14 versions & 1 rubygems