diff options
Diffstat (limited to 'demo')
-rw-r--r-- | demo/demo_highlight.rb | 14 |
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
|