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