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