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