categories.markdown.title

markdown-cheatsheet

All-in-one developer toolkit with 50+ free online tools. JSON formatter, Regex tester, Base64 encoder, QR code generator, Markdown editor, Color converter, Unit converter, CSS generator, and more. 100% client-side, privacy-first.

markdowncheat sheetreferencesyntaxguide

Headings

Source
# H1 Heading
Preview

H1 Heading

Source
## H2 Heading
Preview

H2 Heading

Source
### H3 Heading
Preview

H3 Heading

Source
#### H4 Heading
Preview

H4 Heading

Text Formatting

Source
**Bold text**
Preview

Bold text

Source
*Italic text*
Preview

Italic text

Source
~~Strikethrough~~
Preview

Strikethrough

Source
`Inline code`
Preview

Inline code

Lists

Source
- Unordered item 1
- Unordered item 2
- Unordered item 3
Preview
  • Unordered item 1
  • Unordered item 2
  • Unordered item 3
Source
1. Ordered item 1
2. Ordered item 2
3. Ordered item 3
Preview
  1. Ordered item 1
  2. Ordered item 2
  3. Ordered item 3
Source
- [ ] Task todo
- [x] Task done
Preview
  • Task todo
  • Task done

Links & Images

Source
[Link text](https://example.com)
Preview
Source
![Alt text](https://picsum.photos/50/30)
Preview

Alt text

Code

Source
`inline code`
Preview

inline code

Source
```javascript
const x = 1;
```
Preview
const x = 1;

Tables

Source
| Name | Age |
| --- | --- |
| Alice | 28 |
Preview
NameAge
Alice28

Blockquotes

Source
> This is a quote
Preview

This is a quote

Task Lists

Source
- [x] Completed task
- [ ] Pending task
Preview
  • Completed task
  • Pending task