Got code highlighting working

This commit is contained in:
Mitchell Hashimoto 2010-02-10 01:49:37 -08:00
parent 7767aac9f1
commit a0fcfe0bcf
2 changed files with 11 additions and 11 deletions

View File

@ -1,11 +0,0 @@
---
layout: default
---
<p>Vagrant site coming soon.</p>
<code>
{% highlight ruby %}
def foo
puts 'foo'
end
{% endhighlight %}
</code>

11
index.md Normal file
View File

@ -0,0 +1,11 @@
---
layout: default
---
Vagrant site coming soon.
{% highlight ruby %}
# Just testing code highlighting
Vagrant::Config.run do |config|
config.chef.cookbooks_path = "cookbooks"
end
{% endhighlight %}