144ca23442
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4739 e93f8b46-1217-0410-a6f0-8f06a7374b81
18 lines
211 B
Ruby
18 lines
211 B
Ruby
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
|