dev-notes/Markdown.md

80 lines
1.1 KiB
Markdown
Raw Normal View History

2021-01-31 11:05:37 +01:00
# Markdown Notes
## Headings
```markdown
Heading 1
=========
Heading 2
---------
# Heading 1
## Headding 2
### Heading 3
```
## Text Formatting
```markdown
*Italic* _Italic_
**Bold** __Bold__
~GitHub's striketrough~
```
## Links & Images
```markdown
[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
`inline code`
```lang
multi-line
code block
```
```
## Table
```markdown
| column label | column label | column label |
|:-------------|:------------:|--------------:|
| left-aligned | centered | right-alinged |
| row contents | row contents | row contents |
```