Markdown Demo

Posted on

It’s very easy to make some words bold and other words italic with Markdown. You can even link to Google!.

This is an h1 tag

This is an h2 tag

This is an h3 tag

This is an h4 tag

This is an h5 tag
This is an h6 tag

This text will be italic

This will also be italic

This text will be bold

This will also be bold

You can combine them

  1. Item 1
  2. Item 2
  3. Item 3
    1. Item 3a
    2. Item 3b

As Kanye West said:

We’re living the future so the present is our past.

I think you should use an <code> element here instead.

And this is a horizontal rule.


Code

There are many different ways to style code with Pandoc’s markdown. If you have inline code blocks, wrap them in backticks: var example = true. You can also add a block of code:

function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}

Task Lists

Tables

You can create tables by assembling a list of words and dividing them with hyphens - (for the first row), and then separating each column with a pipe |:

First Header Second Header
Content from cell 1 Content from cell 2
Content in the first column Content in the second column