Skip to content

Commit c19cd9f

Browse files
committed
Update and rename 2015-01-07-test-markdown.md to 2015-02-20-test-markdown.md
1 parent ab0a7b3 commit c19cd9f

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,18 @@ You can write regular [markdown](http://en.wikipedia.org/wiki/Markdown) here and
1010

1111
## Here is a secondary heading
1212

13-
And here's a code chunk:
13+
Here's a code chunk:
1414

1515
~~~
1616
x <- 5 + 10
1717
print(x)
1818
~~~
1919

20-
Got it?
20+
And here is some code with syntax highlighting
2121

22+
{% highlight javascript linenos %}
23+
var foo = function(x) {
24+
return(x + 5);
25+
}
26+
foo(3)
27+
{% endhighlight %}

0 commit comments

Comments
 (0)