Sha256: f5c306cd88d70b77093613e34b06a97c40697235fe63f01ad2165e3f8ee7c134
Contents?: true
Size: 945 Bytes
Versions: 10
Compression:
Stored size: 945 Bytes
Contents
module Plurimath module Math module Symbols class Join < Symbol INPUT = { unicodemath: [["⨝"], parsing_wrapper(["Join"], lang: :unicode)], asciimath: [["⨝"], parsing_wrapper(["Join"], lang: :asciimath)], mathml: ["⨝"], latex: [["Join", "⨝"]], omml: ["⨝"], html: ["⨝"], }.freeze # output methods def to_latex(**) "\\Join" end def to_asciimath(**) parsing_wrapper("Join", 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
10 entries across 10 versions & 1 rubygems