Sha256: ded087e101028a0c2eeb351f39c3c94a504365c5ef12b5e6390a9637ec2619a0
Contents?: true
Size: 985 Bytes
Versions: 2
Compression:
Stored size: 985 Bytes
Contents
module Plurimath module Math module Symbols class Triangledown < Symbol INPUT = { unicodemath: [["▿"], parsing_wrapper(["smalltriangledown", "triangledown"])], asciimath: [["▿"], parsing_wrapper(["smalltriangledown", "triangledown"])], mathml: ["▿"], latex: [["smalltriangledown", "triangledown", "▿"]], omml: ["▿"], html: ["▿"], }.freeze # output methods def to_latex "\\smalltriangledown" end def to_asciimath parsing_wrapper("triangledown") 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.8.12 | lib/plurimath/math/symbols/triangledown.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/triangledown.rb |