From c19cd9f2fc958bb25b0225b21ca91be25c5f4f1f Mon Sep 17 00:00:00 2001 From: Dean Attali Date: Sun, 8 Nov 2015 15:19:04 -0800 Subject: [PATCH] Update and rename 2015-01-07-test-markdown.md to 2015-02-20-test-markdown.md --- ...07-test-markdown.md => 2015-02-20-test-markdown.md} | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) rename _posts/{2015-01-07-test-markdown.md => 2015-02-20-test-markdown.md} (64%) 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 %}