Markdown cheat sheet
Relax, you’re not under test conditions…
A cheat sheet in programming is a document that summarises important information, such as rules and commands for a specific programming language. The following is the most basic markdown syntax. It contains everything you need to know to start using markdown.
| Feature | Syntax |
|---|---|
| Headings | # H1 ## H2 ### H3 |
| Bold | **bold text** |
| Italics | *italicised text* |
| Blockquotes | > blockquote |
| Ordered lists | 1. First item 2. Second item 3. Third item ` |
| Unordered lists | - First item - Second item - Third item |
| Code | `code` |
| Horizontal rules | --- |
| Links | [title](https://www.example.com) |
| Images |  |
Visit the extended syntax page to learn more.