Sha256: d55b8d91775471e87338bfd5d19e4b3e2342b7285671472b120fb2ac06b79d7f
Contents?: true
Size: 963 Bytes
Versions: 14
Compression:
Stored size: 963 Bytes
Contents
module Plurimath module Math module Symbols class Isindot < Symbol INPUT = { unicodemath: [["⋵"], parsing_wrapper(["isindot"], lang: :unicode)], asciimath: [["⋵"], parsing_wrapper(["isindot"], lang: :asciimath)], mathml: ["⋵"], latex: [["isindot", "⋵"]], omml: ["⋵"], html: ["⋵"], }.freeze # output methods def to_latex(**) "\\isindot" end def to_asciimath(**) parsing_wrapper("isindot", 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