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