First Post

MarkDown Template

Blockquotes

Header inside blockquote

  1. This is the first list item.
  2. This is the second list item.

This is nested blockquote.

Here's some example code:

return shell_exec("echo $input | $markdown_script");

List

Markdown supports ordered (numbered) and unordered (bulleted) lists. Unordered lists use asterisks, pluses, and hyphens — interchangably — as list markers:

  • Red
  • Green
  • Blue

  • Bird

  • McHale
  • Parish

To put a code block within a list item, the code block needs to be indented twice — 8 spaces or two tabs:

  • A list item with a code block:
      <codes goes here with two leading tabs>
    

Code Blocks

To produce a code block in Markdown, simply indent every line of the block by at least 4 spaces or 1 tab. For example, given this input:

Horizontal Rules






This is an example inline link. See my About page for details.

This is an example reference-style link.

I get 10 times more traffic from Google than from Yahoo or MSN.

Emphasis

single asterisks

single underscores

double asterisks

double underscores

unfriggingbelievable

*this text is surrounded by literal asterisks*

Code

Use the printf() function. There is a literal backtick (`) here. Please don't use any <blink> tags.

Images

Alt text

Alt text

Miscellaneous

http://daringfireball.net/projects/markdown/syntax#em address@example.com

Blackslash escapes

\   backslash
`   backtick
*   asterisk
_   underscore
{}  curly braces
[]  square brackets
()  parentheses
#   hash mark
+   plus sign
-   minus sign (hyphen)
.   dot
!   exclamation mark
This is an H6