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