To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 6e / 6ed00895e314aeaec84d2e309911a6ab1bb54af7.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (216 Bytes)

1
module CodeRay
2
module Scanners
3

    
4
  load :html
5

    
6
  # Scanner for XML.
7
  #
8
  # Currently this is the same scanner as Scanners::HTML.
9
  class XML < HTML
10

    
11
    register_for :xml
12
    file_extension 'xml'
13
    
14
  end
15

    
16
end
17
end