Sha256: c7f6e53981f6711c21476feb85f26b08ac2eae60dfe81ce1678911af046265fc
Contents?: true
Size: 735 Bytes
Versions: 7
Compression:
Stored size: 735 Bytes
Contents
module Plurimath module Math module Symbols class If < Symbol INPUT = { unicodemath: [["if"]], asciimath: [["if"]], mathml: ["if"], latex: [["if"]], omml: ["if"], html: ["if"], }.freeze # output methods def to_latex "\\operatorname{if}" end def to_asciimath "if" end def to_unicodemath Utility.html_entity_to_unicode("if") end def to_mathml_without_math_tag ox_element("mo") << "if" end def to_omml_without_math_tag(_) "if" end def to_html "if" end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems