2010. 11. 29
Markdown
Markdown is neat.
No comments yet [ / text / formatting ] permalink
Markdown sample text
This all the example text from Markdown basics.
Paragraphs, Headers, Blockquotes
A First Level Header
====================
A Second Level Header
---------------------
Now is the time for all good men to come to
the aid of their country. This is just a
regular paragraph.
The quick brown fox jumped over the lazy
dog's back.
### Header 3
> This is a blockquote.
>
> This is the second paragraph in the blockquote.
>
> ## This is an H2 in a blockquote
Phrase Emphasis
Some of these words *are emphasized*.
Some of these words _are emphasized also_.
Use two asterisks for **strong emphasis**.
Or, if you prefer, __use two underscores instead__.
Lists
bulleted:
* Candy.
* Gum.
* Booze.
numbered:
1. Red
2. Green
3. Blue
multiline:
* A list item.
With multiple paragraphs.
* Another item in the list.
Links
This is an [example link](http://example.com/).
This is an [example link](http://example.com/ "With a Title").
I get 10 times more traffic from [Google][1] than from
[Yahoo][2] or [MSN][3].
[1]: http://google.com/ "Google"
[2]: http://search.yahoo.com/ "Yahoo Search"
[3]: http://search.msn.com/ "MSN Search"
I start my morning with a cup of coffee and
[The New York Times][NY Times].
[ny times]: http://www.nytimes.com/
Images

![alt text][id]
[id]: /path/to/img.jpg "Title"
Code
I strongly recommend against using any `<blink>` tags.
I wish SmartyPants used named entities like `—`
instead of decimal-encoded entites like `—`.
If you want your page to validate under XHTML 1.0 Strict,
you've got to put paragraph tags in your blockquotes:
<blockquote>
<p>For example.</p>
</blockquote>
—
A First Level Header
A Second Level Header
Now is the time for all good men to come to the aid of their country. This is just a regular paragraph.
The quick brown fox jumped over the lazy dog’s back.
Header 3
This is a blockquote.
This is the second paragraph in the blockquote.
This is an H2 in a blockquote
Some of these words are emphasized. Some of these words are emphasized also.
Use two asterisks for strong emphasis. Or, if you prefer, use two underscores instead.
bulleted:
- Candy.
- Gum.
- Booze.
numbered:
- Red
- Green
- Blue
multiline:
-
A list item.
With multiple paragraphs.
-
Another item in the list.
This is an example link.
This is an example link.
I get 10 times more traffic from Google than from Yahoo or MSN.
I start my morning with a cup of coffee and The New York Times.


I strongly recommend against using any <blink> tags.
I wish SmartyPants used named entities like — instead of decimal-encoded entites
like —.
If you want your page to validate under XHTML 1.0 Strict, you’ve got to put paragraph tags in your blockquotes:
<blockquote>
<p>For example.</p>
</blockquote>
No comments yet [ / text / formatting ] permalink