summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/xml.rb
blob: 5ce8ce9ba44b466bf68a7e8f2e22e492b366fffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module CodeRay
module Scanners

  load :html

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

    register_for :xml

  end

end
end