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