Sha256: 075f9b019f5b0ad2b73b0d3aa8522c593d3a8ec780d0e0d7ac240c907fe615e5
Contents?: true
Size: 957 Bytes
Versions: 2
Compression:
Stored size: 957 Bytes
Contents
module Plurimath module Math module Symbols class Lbrackuend < Symbol INPUT = { unicodemath: [["⎡"], parsing_wrapper(["lbrackuend"], lang: :unicode)], asciimath: [["⎡"], parsing_wrapper(["lbrackuend"], lang: :asciimath)], mathml: ["⎡"], latex: [["lbrackuend", "⎡"]], omml: ["⎡"], html: ["⎡"], }.freeze # output methods def to_latex "\\lbrackuend" end def to_asciimath parsing_wrapper("lbrackuend", 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.8.14 | lib/plurimath/math/symbols/lbrackuend.rb |
plurimath-0.8.13 | lib/plurimath/math/symbols/lbrackuend.rb |