updated syntax style, added javascript for expanding code blocks

This commit is contained in:
B Mathis 2009-11-12 10:19:36 -06:00
parent 790d5a447c
commit 1eddd60a71
6 changed files with 75 additions and 20 deletions

View file

@ -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'