summaryrefslogtreecommitdiff
path: root/sample/demo_highlight.rb
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2006-10-17 09:44:47 +0000
committermurphy <murphy@rubychan.de>2006-10-17 09:44:47 +0000
commit70690604e7ea6fd6b89c256a52d65a308ad0fe77 (patch)
tree8f681315abf127e16019b3de92e16899517e3db4 /sample/demo_highlight.rb
parent3078dddb4cb2c5f09ff92bcd56401f75b79a13d1 (diff)
downloadcoderay-70690604e7ea6fd6b89c256a52d65a308ad0fe77.tar.gz
Moved demos to sample/.
Diffstat (limited to 'sample/demo_highlight.rb')
-rw-r--r--sample/demo_highlight.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/sample/demo_highlight.rb b/sample/demo_highlight.rb
new file mode 100644
index 0000000..846efa4
--- /dev/null
+++ b/sample/demo_highlight.rb
@@ -0,0 +1,14 @@
+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