update to jekyll3 (syntax highlight only supported in code chunks)

This commit is contained in:
Dean Attali 2016-02-01 17:33:46 -08:00
parent 6657f6aa80
commit 3a2c39e76a

View File

@ -23,9 +23,9 @@ print(x)
And here is some code with syntax highlighting And here is some code with syntax highlighting
{% highlight javascript linenos %} ```javascript
var foo = function(x) { var foo = function(x) {
return(x + 5); return(x + 5);
} }
foo(3) foo(3)
{% endhighlight %} ```