summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/xml.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/coderay/scanners/xml.rb')
-rw-r--r--lib/coderay/scanners/xml.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/coderay/scanners/xml.rb b/lib/coderay/scanners/xml.rb
new file mode 100644
index 0000000..d1c6bad
--- /dev/null
+++ b/lib/coderay/scanners/xml.rb
@@ -0,0 +1,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