nemhugo/exampleSite/content/post/2015-02-20-test-markdown.md
SeongJae Park 4a7bf7833c Apply tags to example posts
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
2017-02-25 00:20:29 +09:00

1.1 KiB

title subtitle date tags
Test markdown Each post also has a subtitle 2015-02-20
example
markdown

You can write regular markdown here and Jekyll will automatically convert it to a nice webpage. I strongly encourage you to take 5 minutes to learn how to write in markdown - it'll teach you how to transform regular text into bold/italics/headings/tables/etc.

Here is some bold text

Here is a secondary heading

Here's a useless table:

Number Next number Previous number
Five Six Four
Ten Eleven Nine
Seven Eight Six
Two Three One

How about a yummy crepe?

Crepe

Here's a code chunk:

var foo = function(x) {
  return(x + 5);
}
foo(3)

And here is the same code with syntax highlighting:

var foo = function(x) {
  return(x + 5);
}
foo(3)

And here is the same code yet again but with line numbers:

{{< highlight python linenos >}} var foo = function(x) { return(x + 5); } foo(3) {{</ highlight >}}