Sha256: fde853c826e5eff4d06d4b01d5f53c5684349daacde82e2a409f42cef6d8b7e8
Contents?: true
Size: 890 Bytes
Versions: 7
Compression:
Stored size: 890 Bytes
Contents
module Plurimath module Math module Symbols class Llcorner < Symbol INPUT = { unicodemath: [["⌞"], parsing_wrapper(["llcorner"])], asciimath: [["⌞"], parsing_wrapper(["llcorner"])], mathml: ["⌞"], latex: [["llcorner", "⌞"]], omml: ["⌞"], html: ["⌞"], }.freeze # output methods def to_latex "\\llcorner" end def to_asciimath parsing_wrapper("llcorner") 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