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