Cheat Sheet
The commands you keep forgetting, with a one-line description and a real example you can copy - 384 across 26 tools. Pick a tool in the sidebar, or search across all of them.
Markdown
The Markdown syntax you keep half-remembering.| Command | What it does | Example |
|---|---|---|
# Heading | Headings, one to six # for H1–H6. | ## Section title |
**bold** | Bold text. | **important** |
*italic* | Italic text. | *subtle emphasis* |
[text](url) | A link. | [the docs](https://example.com) |
 | An image. |  |
`code` | Inline code. | `npm install` |
```lang | A fenced code block. | ```js
console.log(1)
``` |
- item | A bullet list. | - first
- second |
1. item | A numbered list. | 1. first
2. second |
> quote | A blockquote. | > remember this |
| a | b | | A table row (with a --- separator row). | | Name | Age | |
- [ ] / - [x] | A task list. | - [x] shipped |
~~strike~~ | Strikethrough. | ~~deprecated~~ |
--- | A horizontal rule. | --- |