Sha256: 94b5058ed43fc6e732ca5683f6fe21bffc3c26c6097a347cd918ba5aae6c3f68
Contents?: true
Size: 979 Bytes
Versions: 16
Compression:
Stored size: 979 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
16 entries across 16 versions & 1 rubygems