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
1 changed files with 2 additions and 2 deletions

View File

@ -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 %}
```