Sha256: bcd9e6162caf0f19ca446b692b4ddf43295f41019d4a980dd2946c2c2254ca4d
Contents?: true
Size: 1.02 KB
Versions: 2
Compression:
Stored size: 1.02 KB
Contents
module Plurimath module Math module Symbols class Leftarrowshortrightarrow < Symbol INPUT = { unicodemath: [["⥃"], parsing_wrapper(["leftarrowshortrightarrow"], lang: :unicode)], asciimath: [["⥃"], parsing_wrapper(["leftarrowshortrightarrow"], lang: :asciimath)], mathml: ["⥃"], latex: [["leftarrowshortrightarrow", "⥃"]], omml: ["⥃"], html: ["⥃"], }.freeze # output methods def to_latex "\\leftarrowshortrightarrow" end def to_asciimath parsing_wrapper("leftarrowshortrightarrow", 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.8.14 | lib/plurimath/math/symbols/leftarrowshortrightarrow.rb |
plurimath-0.8.13 | lib/plurimath/math/symbols/leftarrowshortrightarrow.rb |