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* item1. item
Links
[Link text](https://example.com)
Images

Code
`inline code`-
code block
## Blockquotes
- `> quoted text`
## Tables
- `| Col A | Col B |`
- `| --- | --- |`
- `| A1 | B1 |`
## Tasks
- `- [ ] unchecked`
- `- [x] checked`