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