All cheatsheets
Cheatsheets
Markdown
Markdown syntax for text, headings, lists, links, code, and tables.
22 entries
Text7
**bold**Bold text
*italic*Italic text
~~strike~~Strikethrough
`code`Inline code
> quoteBlockquote
---Horizontal rule
footnote[^1]Footnote reference
Headings3
# H1Top-level heading
## H2Second-level heading
### H3Third-level heading
Lists5
- itemUnordered list item
1. itemOrdered list item
- nestedNested item (indent 2 spaces)
- [ ] todoUnchecked task
- [x] doneChecked task
Links & images4
[text](https://url)Link
Image
[text][ref]Reference-style link
<https://url>Autolink
Code & tables3
```js
const x = 1;
```Fenced code block with a language
| Col A | Col B |
| ----- | ----- |
| a | b |Table with a header row
indentedIndented (4-space) code block