Upload of pre-existing files

This commit is contained in:
Marcello Lamonaca 2021-01-31 11:05:37 +01:00
commit 4c21152830
150 changed files with 730703 additions and 0 deletions

79
Markdown.md Normal file
View file

@ -0,0 +1,79 @@
# 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 |
```