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