From 3a2c39e76a0fd42a28df6d8482a7c6d463c1e317 Mon Sep 17 00:00:00 2001 From: Dean Attali Date: Mon, 1 Feb 2016 17:33:46 -0800 Subject: [PATCH] update to jekyll3 (syntax highlight only supported in code chunks) --- _posts/2015-02-20-test-markdown.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2015-02-20-test-markdown.md b/_posts/2015-02-20-test-markdown.md index 28de7fe..34b688f 100644 --- a/_posts/2015-02-20-test-markdown.md +++ b/_posts/2015-02-20-test-markdown.md @@ -23,9 +23,9 @@ print(x) And here is some code with syntax highlighting -{% highlight javascript linenos %} +```javascript var foo = function(x) { return(x + 5); } foo(3) -{% endhighlight %} +```