MD
Markdown Cheatsheet
Core Markdown syntax - the formatting used in READMEs, documentation, and most static site content.
Headers & formatting
# Heading 1Largest header
## Heading 2Second-level header
**bold**Bold text
*italic*Italic text
~~strikethrough~~Strikethrough text
`inline code`Inline code
Links & images
[text](url)Hyperlink
Image
[text](url "title")Link with a hover title
Lists & blocks
- itemUnordered list item
1. itemOrdered list item
> quoteBlockquote
```lang\ncode\n```Fenced code block with language label
---Horizontal rule