Skip to content

Commit fb62533

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

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed
Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Test markdown
3+
title: Example how to use markdown
44
subtitle: Each post also has a subtitle
55
---
66

@@ -10,11 +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
21+
22+
{% highlight javascript linenos %}
23+
var foo = function(x) {
24+
return(x + 5);
25+
}
26+
foo(3)
27+
{% endhighlight %}

0 commit comments

Comments
 (0)