Skip to content

Markdown Notes

Headings

Markdown
1
2
3
4
5
6
7
8
9
Heading 1
=========

Heading 2
---------

# Heading 1
## Heading 2
### Heading 3

Text Formatting

Markdown
1
2
3
4
*Italic*    _Italic_
**Bold**    __Bold__

~GitHub's strike-trough~
Markdown
1
2
3
4
5
6
7
8
9
[link text](http://b.org "title")

[link text][anchor]
[anchor]: http://b.org "title"

![alt attribute](http://url/b.jpg "title")

![alt attribute][anchor]
[anchor]: http://url/b.jpg "title"
Markdown
> Blockquote

* unordered list        - unordered list
* unordered list        - unordered list
* unordered list        - unordered list

1) ordered list         1. ordered list
2) ordered list         2. ordered list
3) ordered list         3. ordered list

- [ ] empty checkbox
- [x] checked checkbox

Horizontal rule

Markdown
---                     ***

Code

Markdown
1
2
3
4
5
6
`inline code`

    ```lang
    multi-line
    code block
    ```

Table

Markdown
1
2
3
4
| column label | column label | column label  |
|:-------------|:------------:|--------------:|
| left-aligned | centered     | right-aligned |
| row contents | row contents | row contents  |