From 1eddd60a716accb9252600202b79f25a7ceda904 Mon Sep 17 00:00:00 2001
From: B Mathis <brandon@imathis.com>
Date: Thu, 12 Nov 2009 10:19:36 -0600
Subject: updated syntax style, added javascript for expanding code blocks

---
 source/test/syntax.markdown | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

(limited to 'source/test/syntax.markdown')

diff --git a/source/test/syntax.markdown b/source/test/syntax.markdown
index 8a406628..368ba58d 100644
--- a/source/test/syntax.markdown
+++ b/source/test/syntax.markdown
@@ -2,18 +2,19 @@
 layout: default
 title: Syntax Highlighting Debug
 ---
-{% highlight ruby linenos %}
-  def rebuild_site(relative)
-    puts ">>> Change Detected to: #{relative} <<<"
-    IO.popen('rake generate') do |io|
-      print(io.readpartial(512)) until io.eof?
-    end
-    puts '>>> Update Complete <<<'
+{% highlight ruby %}
+def rebuild_site(relative)
+  puts ">>> Change Detected to: #{relative} <<<"
+  IO.popen('rake generate') do |io|
+    print(io.readpartial(512)) until io.eof?
   end
-  
+  puts '>>> Update Complete <<<'
+end
 {% endhighlight %}
 
-{% highlight ruby linenos %}
+So that's a small example. What about a big one?
+
+{% highlight ruby %}
 require 'active_support/core_ext/array'
 require 'active_support/core_ext/hash/except'
 require 'active_support/core_ext/object/metaclass'
-- 
cgit v1.2.1