view vendor/plugins/coderay-0.9.2/lib/coderay/scanners/xml.rb @ 360:96cfb24411c6 cannam-pre-20110113-merge

Move News further to left in menu, in a more obvious place between Overview and Activity
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 01 Apr 2011 10:31:22 +0100
parents 513646585e45
children
line wrap: on
line source
module CodeRay
module Scanners

  load :html

  # XML Scanner
  #
  # Currently this is the same scanner as Scanners::HTML.
  class XML < HTML

    register_for :xml
    file_extension 'xml'
    
  end

end
end