Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a09cd0 commit fb62533Copy full SHA for fb62533
_posts/2015-01-07-test-markdown.md renamed to _posts/2015-02-20-test-markdown.md
@@ -1,6 +1,6 @@
1
---
2
layout: post
3
-title: Test markdown
+title: Example how to use markdown
4
subtitle: Each post also has a subtitle
5
6
@@ -10,11 +10,18 @@ You can write regular [markdown](http://en.wikipedia.org/wiki/Markdown) here and
10
11
## Here is a secondary heading
12
13
-And here's a code chunk:
+Here's a code chunk:
14
15
~~~
16
x <- 5 + 10
17
print(x)
18
19
20
-Got it?
+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