Sha256: dbd8381a560de2440606380a53bc8e4ff2193150d2dc6615ffb94ff0e2649bb8
Contents?: true
Size: 955 Bytes
Versions: 2
Compression:
Stored size: 955 Bytes
Contents
module Plurimath module Math module Symbols class Less < Symbol INPUT = { unicodemath: [["<", "<"], parsing_wrapper(["<", "lt", "less"], lang: :unicode)], asciimath: [["<", "lt", "<", "<"], parsing_wrapper(["less"], lang: :asciimath)], mathml: ["<", "<"], latex: [["less", "<", "<", "<"], parsing_wrapper(["lt"], lang: :latex)], omml: ["<", "<"], html: ["<"], }.freeze # output methods def to_latex "<" end def to_asciimath "lt" end def to_unicodemath Utility.html_entity_to_unicode("<") end def to_mathml_without_math_tag(_) ox_element("mo") << "<" 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/less.rb |
plurimath-0.8.13 | lib/plurimath/math/symbols/less.rb |