clean up the css

This commit is contained in:
Pete 2016-07-29 17:10:26 -05:00
parent 44aa1f08ea
commit 841a247664
2 changed files with 19 additions and 16 deletions

View file

@ -39,3 +39,12 @@ var foo = function(x) {
}
foo(3)
```
And here is some more with line numbers
{% highlight python linenos %}
def bar(x):
return x * 2
print bar(2)
{% endhighlight %}