summaryrefslogtreecommitdiff
path: root/demo
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2005-10-29 16:09:17 +0000
committermurphy <murphy@rubychan.de>2005-10-29 16:09:17 +0000
commit39ff12b40e0b8b3a892aea63eddfae87531f5d10 (patch)
treec94d1a334bf3f11896af65abb1aeda4de9b1e000 /demo
parent20cc0418476d2f27276fbf4cfe42fd884092befd (diff)
downloadcoderay-39ff12b40e0b8b3a892aea63eddfae87531f5d10.tar.gz
Version 0.4.6!
coderay.rb: Added highlight functions new demo/demo_highlight.rb encoders/helpers/html_output.rb: Improved stylesheet method Rakefile: smarter progress info on uploading
Diffstat (limited to 'demo')
-rw-r--r--demo/demo_highlight.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/demo/demo_highlight.rb b/demo/demo_highlight.rb
new file mode 100644
index 0000000..846efa4
--- /dev/null
+++ b/demo/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