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