MD

Markdown Cheatsheet

Core Markdown syntax - the formatting used in READMEs, documentation, and most static site content.

Headers & formatting

# Heading 1

Largest header

## Heading 2

Second-level header

**bold**

Bold text

*italic*

Italic text

~~strikethrough~~

Strikethrough text

`inline code`

Inline code

Links & images

[text](url)

Hyperlink

![alt](url)

Image

[text](url "title")

Link with a hover title

Lists & blocks

- item

Unordered list item

1. item

Ordered list item

> quote

Blockquote

```lang\ncode\n```

Fenced code block with language label

---

Horizontal rule