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