This file is indexed.

/usr/lib/ruby/vendor_ruby/maruku/ext/math/mathml_engines/none.rb is in ruby-maruku 0.7.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
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