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