bhollis/maruku

View on GitHub
lib/maruku/ext/math/mathml_engines/none.rb

Summary

Maintainability
A
0 mins
Test Coverage
module MaRuKu::Out::HTML
  def convert_to_mathml_none(kind, tex)
    code = xelem('code')
    tex_node = xtext(tex)
    code << tex_node
  end

  def convert_to_png_none(kind, tex)
    nil
  end
end