Learn Markdown

Date: 2020-01-21

https://www.markdowntutorial.com/lesson/1/

# Header 1
## Header 2
### Header 3

Heading level 1 (alternative syntax)
===============
Heading level 2 (alternative syntax)
---------------

bold: **multiple words bold**
italic: _multiple words bold_
bold-italic: **_multiple words bold_** (or *** or ___)
header italic:
## _Header 2_
strike-through: ~~Striked through~~

Paragraphs: 
hard-break: (new paragraph) one or more empty line(s) between lines of text
soft-break: (new line)      two spaces at the end of a line 

Unordered list:  dashes (-), asterisks (*), or plus signs (+) 
* Item1
* Item2
* Item3

Ordered list:
1. Item1
2. Item2
3. Item3

Quote:
> This is quoted text
>
> With an empty line in between

Links:
[Click here](www.google.nl)

Reference link:
[Click here][link-name]
[link-name]:www.google.nl

Images:
![Google logo](www.google.nl/logo.png)

Reference image:
![Google logo][logo-link]
[logo-link]: www.google.nl/logo.png

Link to heading:
### My Great Heading {#custom-id}
[Goto Great Heading](#custom-id)

Code block: (try out language support eg. [ js | json | cs | ts ])
```js
const a = function() { ws.getMonkeys(race, type, callback); }
```

Horizontal lines:
***
or:
---

## Sometimes unsupported extended syntax:

Even tables:
| Tables   |      Are      |  Cool |
|----------|:-------------:|------:|
| col 1 is |  left-aligned | $1600 |
| col 2 is |    centered   |   $12 |
| col 3 is | right-aligned |    $1 |

Or a task list:
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media

Footnotes:
Here's a simple footnote,[^1] and here's a longer one.[^bignote]
[^1]: This is the first footnote.
[^bignote]: Here's one with multiple lines and code.
  `{ my code }`

31680cookie-checkLearn Markdown