Markdown Cheatsheet — Quick Reference Guide

Quick reference guide for Markdown formatting syntax.

Headers

# H1
## H2
### H3

H1

H2

H3

Emphasis

**bold**
*italic*
~~strikethrough~~

bold italic strikethrough

Lists

1. First item
2. Second item

- Unordered item
- Another item
  1. First item
  2. Second item
  • Unordered item
  • Another item

Links

[OpenAI](https://openai.com)

Images

![Alt text](https://picsum.photos/100/50)

Alt text

Blockquotes

> This is a blockquote.

This is a blockquote.

Code

Inline `code`

```javascript
console.log("Block code");
```

Inline code

console.log("Block code");

Tables

| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
SyntaxDescription
HeaderTitle
ParagraphText

Task Lists

- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
  • Write the press release
  • Update the website
  • Contact the media
Markdown Cheatsheet — Quick Reference Guide | FileNaut