markdown Cheat Sheet

マークダウンについてのチートシートです。

目次

文法

Top title

title
====

headers

# title1
## subtitle1
### subsubtitle1

Emphasis

_italic_
*italic*
**Bold**
~~strikethrough~~

List

Unordered list

- item1
- item2
- item3
* item1
* item2
* item3

Ordered list

1. item1
2. item2
3. item3

Links

[text](url)
[text](url "title")

Images

![alt](url "title")

Code

 ```lang
...
 ```

Blockquotes

> Blockquotes

Horizontal Rule

---