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