Markdown Cheat Sheet
What is Markdown?
Markdown is a markup language used to create formatted text.
Basic syntax
| Style | Syntax | Output |
|---|---|---|
| Heading | # Random text | Random text |
| ## Random text | Random text |
|
| ### Random text | Random text |
|
| Bold | **Random text** | Random text |
| Italic | *Random text* | Random text |
| Numbered List | 1. Item one 2. Item two 3. Item tdree |
|
| Bullet List | - Item one - Item two - Item tdree |
|
| Add line breaks | This is test text <br />This is an example | This is test text This is an example |
| Paragraphs | Paragraph one Paragraph two |
This is test text This is an example |
| Horizontal line | --- | |
| Link | [title](https://www.example.com) | title |
| Link to email | [email](https://www.example.com) |