1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 14:47:53 +02:00
cheatsheets/markdown.md
2015-11-24 16:02:17 +11:00

645 B

title category
Markdown Markup

Headers

# h1
### h3

Header 1
========

Header 2
--------
[link](http://google.com)

[link][google]
[google]: http://google.com

<http://google.com>

Images

![Image alt text](/path/to/img.jpg)
![Image alt text](/path/to/img.jpg "title")
![Image alt text][img]

[img]: http://foo.com/img.jpg

Emphasis

*italic*
_italic_

**bold**
__bold__

Code

    4 space indent

Blockquotes

> This is
> a blockquote
>
> > Nested
> > Blockquote

Horizontal line

----
****