diff options
Diffstat (limited to 'demo/demo_highlight.rb')
-rw-r--r-- | demo/demo_highlight.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/demo/demo_highlight.rb b/demo/demo_highlight.rb deleted file mode 100644 index 846efa4..0000000 --- a/demo/demo_highlight.rb +++ /dev/null @@ -1,14 +0,0 @@ -require 'coderay'
-
-puts CodeRay.highlight('puts "Hello, World!"', :ruby)
-
-output = CodeRay.highlight_file($0, :line_numbers => :table)
-puts <<HTML
-<html>
-<head>
-#{output.stylesheet true}
-<body>
-#{output}
-</body>
-</html>
-HTML
|