Sha256: 290f3c11ddc5536b605401d14e2e6bfac3bce8013ccf8edddfd0a566411d6c87
Contents?: true
Size: 926 Bytes
Versions: 7
Compression:
Stored size: 926 Bytes
Contents
module Plurimath module Math module Symbols class Downwhitearrow < Symbol INPUT = { unicodemath: [["⇩"], parsing_wrapper(["downwhitearrow"])], asciimath: [["⇩"], parsing_wrapper(["downwhitearrow"])], mathml: ["⇩"], latex: [["downwhitearrow", "⇩"]], omml: ["⇩"], html: ["⇩"], }.freeze # output methods def to_latex "\\downwhitearrow" end def to_asciimath parsing_wrapper("downwhitearrow") 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