/markdown-scratch

Scratchpad for people to play with markdown

GNU General Public License v3.0GPL-3.0

markdown-scratch

Please create a new file to play in!

Syntax guide

Here’s an overview of Markdown syntax that you can use anywhere on GitHub.com or in your own text files.

Headers

This is an <h1> tag

This is an <h2> tag

This is an <h6> tag

Emphasis

This text will be italic This will also be italic

This text will be bold This will also be bold

You can combine them

Lists

Unordered

  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

Ordered

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

Images

Git Logo

Format: ![Alt Text](url)

Links

GitHub

Format: [Text](url)

Blockquotes

As Kanye West said:

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

Inline code

I think you should use the t() function here.

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

Task Lists

  • @mentions, #refs, links, formatting, and tags supported
  • list syntax required (any unordered or ordered list supported)
  • this is a complete item
  • this is an incomplete item

Tables

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