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

> quote

Blockquote

---

Horizontal rule

footnote[^1]

Footnote reference

Headings3

# H1

Top-level heading

## H2

Second-level heading

### H3

Third-level heading

Lists5

- item

Unordered list item

1. item

Ordered list item

- nested

Nested item (indent 2 spaces)

- [ ] todo

Unchecked task

- [x] done

Checked task

Links & images4

[text](https://url)

Link

![alt](image.png)

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

indented

Indented (4-space) code block