This is a demo post on: How to write Blog Posts with Markdown.

Here is some bold text
And these are italic
Both bold and italic
Strikethrough

Headers:

Here is h1

Here is h2

Here is h3

Here is h4

Here is h5
Here is h6

Inline link

Table

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

Lists:

Ordered List:

  1. First item on the list
  2. Second item on the list

Unordered List

  • First item of unordered list
  • Second item of unordered list
  • Third item of unordered list

    • First subitem of unordered list
    • Second subitem of unordered list
    • Third subitem of unordered list

Image

Image

Centered Image

Image

Code and Syntax Highlight

Code Block is the part of Markdown but not Syntax Highlight is not.

A block of code:

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:

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

Boxes

You can add notification, warning and error boxes like this:

Notification

Note: This is a notification box.

Warning

Warning: This is a warning box.

Error

Error: This is an error box.