Sha256: 9e8c150e543f0db09b3fb53a600d0df94e233e8718a3bf6426426bbd6dbaa575
Contents?: true
Size: 866 Bytes
Versions: 7
Compression:
Stored size: 866 Bytes
Contents
module Plurimath module Math module Symbols class Finv < Symbol INPUT = { unicodemath: [["Ⅎ"], parsing_wrapper(["Finv"])], asciimath: [["Ⅎ"], parsing_wrapper(["Finv"])], mathml: ["Ⅎ"], latex: [["Finv", "Ⅎ"]], omml: ["Ⅎ"], html: ["Ⅎ"], }.freeze # output methods def to_latex "\\Finv" end def to_asciimath parsing_wrapper("Finv") 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
7 entries across 7 versions & 1 rubygems