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 / vendor / gems / coderay-0.9.7 / lib / coderay / scanners / xml.rb @ 442:753f1380d6bc

History | View | Annotate | Download (211 Bytes)

1
module CodeRay
2
module Scanners
3

    
4
  load :html
5

    
6
  # XML Scanner
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