diff --git a/_posts/2015-01-07-test-markdown.md b/_posts/2015-02-20-test-markdown.md similarity index 64% rename from _posts/2015-01-07-test-markdown.md rename to _posts/2015-02-20-test-markdown.md index c8c864d..a1f6cdc 100644 --- a/_posts/2015-01-07-test-markdown.md +++ b/_posts/2015-02-20-test-markdown.md @@ -10,12 +10,18 @@ You can write regular [markdown](http://en.wikipedia.org/wiki/Markdown) here and ## Here is a secondary heading -And here's a code chunk: +Here's a code chunk: ~~~ x <- 5 + 10 print(x) ~~~ -Got it? +And here is some code with syntax highlighting +{% highlight javascript linenos %} +var foo = function(x) { + return(x + 5); +} +foo(3) +{% endhighlight %}