Sha256: 053489d3702b6b6234d7ba8b44c1a3715e21ee710ba8f11c97409f6075eb6a92
Contents?: true
Size: 1014 Bytes
Versions: 2
Compression:
Stored size: 1014 Bytes
Contents
module Plurimath module Math module Symbols class Lightning < Symbol INPUT = { unicodemath: [["↯"], parsing_wrapper(["downzigzagarrow", "lightning"], lang: :unicode)], asciimath: [["↯"], parsing_wrapper(["downzigzagarrow", "lightning"], lang: :asciimath)], mathml: ["↯"], latex: [["downzigzagarrow", "lightning", "↯"]], omml: ["↯"], html: ["↯"], }.freeze # output methods def to_latex "\\downzigzagarrow" end def to_asciimath parsing_wrapper("lightning", lang: :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.14 | lib/plurimath/math/symbols/lightning.rb |
plurimath-0.8.13 | lib/plurimath/math/symbols/lightning.rb |