view vendor/plugins/coderay-0.9.2/lib/coderay/scanners/xml.rb @ 348:8d0e011332ef live

Merge from branch "feature_122"
author Chris Cannam
date Thu, 31 Mar 2011 15:23:46 +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