Sha256: b9a6bd4021f6e1367eefcab6767d2d9ba8cbb759a88d1b6ab14b39c8f3a70063
Contents?: true
Size: 1022 Bytes
Versions: 14
Compression:
Stored size: 1022 Bytes
Contents
module Plurimath module Math module Symbols class Checkmark < Symbol INPUT = { unicodemath: [["✓"], parsing_wrapper(["ballotcheck", "checkmark"], lang: :unicode)], asciimath: [["✓"], parsing_wrapper(["ballotcheck", "checkmark"], lang: :asciimath)], mathml: ["✓"], latex: [["ballotcheck", "checkmark", "✓"]], omml: ["✓"], html: ["✓"], }.freeze # output methods def to_latex(**) "\\ballotcheck" end def to_asciimath(**) parsing_wrapper("checkmark", 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