updated syntax style, added javascript for expanding code blocks
This commit is contained in:
parent
790d5a447c
commit
1eddd60a71
6 changed files with 75 additions and 20 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue