mirror of
https://github.com/redmine/redmine.git
synced 2025-11-09 14:56:01 +01:00
19 lines
195 B
Ruby
19 lines
195 B
Ruby
|
|
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
|