# Markdown Cheatsheet
##Heading
#H1
##H2
...
######H6
#H1 ##H2 ######H6
##Emphasis
Italics is *asterisks* or _underscores_.
Strong is **asterisks** of __underscores__.
Strikethrough is ~~Scratch~~.
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
Lezhin
com *ul
number doesn't matter
ol
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 (opens new window)
I'm an inline-style link with title (opens new window)
I'm a reference-style link (opens new window)
I'm a relative reference to a repository file
You can use numbers for reference-style link definitions (opens new window)
Or leave it empty and use the link text itself (opens new window)
Some text to show that the reference links can follow later.
# Image
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:
Reference-style:
##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