Sha256: 36bd1b9d406786ef1c7211e34d13c53f883cf1b43767574cef6aca6b504b362a
Contents?: true
Size: 999 Bytes
Versions: 2
Compression:
Stored size: 999 Bytes
Contents
module Plurimath module Math module Symbols class Unicodeellipsis < Symbol INPUT = { unicodemath: [["ldots", "...", "dots", "…"], parsing_wrapper(["unicodeellipsis"])], asciimath: [["ldots", "...", "…"], parsing_wrapper(["dots", "unicodeellipsis"])], mathml: ["…"], latex: [["unicodeellipsis", "ldots", "…"], parsing_wrapper(["...", "dots"])], omml: ["…"], html: ["…"], }.freeze # output methods def to_latex "\\unicodeellipsis" end def to_asciimath "ldots" 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.12 | lib/plurimath/math/symbols/unicodeellipsis.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/unicodeellipsis.rb |