Mercurial > hg > soundsoftware-site
comparison vendor/gems/coderay-0.9.7/lib/coderay/scanners/xml.rb @ 524:1248a47e81b3 feature_36
Merge from branch "luisf"
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 25 Jul 2011 14:39:38 +0100 |
parents | 0579821a129a |
children |
comparison
equal
deleted
inserted
replaced
519:3be6bc3c2a17 | 524:1248a47e81b3 |
---|---|
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 |