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