Sha256: 01ff833646f7fceee647f13a4e18e78ed2d7070bc0fccf0df24ede6f9f5e60a8
Contents?: true
Size: 1.06 KB
Versions: 14
Compression:
Stored size: 1.06 KB
Contents
module Plurimath module Math module Symbols class Downharpoonright < Symbol INPUT = { unicodemath: [["downharpoonright", "⇂"], parsing_wrapper(["upharpoonrightdown"], lang: :unicode)], asciimath: [["⇂"], parsing_wrapper(["downharpoonright", "upharpoonrightdown"], lang: :asciimath)], mathml: ["⇂"], latex: [["upharpoonrightdown", "downharpoonright", "⇂"]], omml: ["⇂"], html: ["⇂"], }.freeze # output methods def to_latex(**) "\\upharpoonrightdown" end def to_asciimath(**) parsing_wrapper("downharpoonright", 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