Markdown Cheatsheet

Heading

# H1
## H2
...
###### H6

H1

H2

H6

Emphasis

Italics is *asterisks* or _underscores_.
Strong is **asterisks** of __underscores__.

Italics is asterisks or underscores.
Strong is asterisks of underscores.


Lists

1.Lezhin
2.com
⋅⋅*ul
1.number doesn't matter
⋅⋅1. ol
4.another
⋅⋅⋅indented paragraphs

⋅⋅⋅hello world

* Unordered List with asterisks
- or minuses
+ or pluses
  1. Lezhin
  2. com
    *ul
  3. number doesn’t matter
    1. ol
  4. another
    indented paragraphs

    hello world

* Unordered List with asterisks
– or minuses
+ or pluses


Links

[I'm an inline-style link](https://www.google.com)

[I'm an inline-style link with title](https://www.google.com "Google's Homepage")

[I'm a reference-style link][Arbitrary case-insensitive reference text]

[I'm a relative reference to a repository file](../blob/master/LICENSE)

[You can use numbers for reference-style link definitions][1]

Or leave it empty and use the [link text itself]

Some text to show that the reference links can follow later.

[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com

I’m an inline-style link

I’m an inline-style link with title

I’m a reference-style link

I’m a relative reference to a repository file

You can use numbers for reference-style link definitions

Or leave it empty and use the link text itself

Some text to show that the reference links can follow later.


Images

Inline-style: 
![alt text](http://cdn.lezhin.com/old-assets/home.png "Logo Title Text 1")

Reference-style: 
![alt text][logo]

[logo]: http://cdn.lezhin.com/old-assets/home.png "Logo Title Text 2"

Inline-style:
alt text

Reference-style:
alt text


Code Highlighting

```javascript
var s = "Lezhin";
```
var s = "Lezhin";

Tables

Colons can be used to align columns.

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |

The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.

Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3

Colons can be used to align columns.

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

The outer pipes (|) are optional, and you don’t need to make the raw Markdown line up prettily. You can also use inline Markdown.

Markdown Less Pretty
Still renders nicely
1 2 3

Blockquotes

> Blockquotes haha.
> Second line.

Blockquotes haha.
Second line.


Refer

http://www.emoji-cheat-sheet.com/

https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet

http://plaintext-productivity.net/2-04-how-to-set-up-sublime-text-for-markdown-editing.html

아기_토끼

안녕하세요, 수련중인 개발자입니다.
피드백이나 오류 정정을 해주시면 감사히 받겠습니다!