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