Tool Library
Developer Tools

Markdown Cheatsheet

Formatting basics for clean README and docs.

Markdown Cheatsheet

Headings

  • # H1
  • ## H2
  • ### H3

Emphasis

  • *italic* or _italic_
  • **bold** or __bold__
  • ~~strikethrough~~

Lists

  • - item
  • * item
  • 1. item

Links

  • [Link text](https://example.com)

Images

  • ![Alt text](https://example.com/image.png)

Code

  • `inline code`
code block

## Blockquotes
- `> quoted text`

## Tables
- `| Col A | Col B |`
- `| --- | --- |`
- `| A1 | B1 |`

## Tasks
- `- [ ] unchecked`
- `- [x] checked`