Bookmark this page
Press Ctrl+D (Windows) or Cmd+D (Mac) to bookmark this page.
📝 Markdown

Markdown Cheat Sheet

Markdown syntax for headings, emphasis, lists, links, code and tables.

Headings and emphasisLists and linksCode blocksTables and quotes

Headings and emphasis

# H1
## H2
**bold**
*italic*

Lists and links

- item one
- item two
1. first
[link](https://example.com)

Code and quotes

`inline code`

```js
console.log("hi")
```
> blockquote

Tables

| Name | Value |
| --- | --- |
| A | 1 |
| B | 2 |

Images and checklists

![Alt text](image.png)
- [ ] Todo item
- [x] Finished item
\* escape special characters
✓ Copied!