Reference

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.
CommandWhat it doesExample
# HeadingHeadings, 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)
![alt](url)An image.![logo](/logo.png)
`code`Inline code.`npm install`
```langA fenced code block.```js console.log(1) ```
- itemA bullet list.- first - second
1. itemA numbered list.1. first 2. second
> quoteA 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.---