Markdown Cheat Sheet

Thursday, May 22, 2025

📘 Markdown Cheat Sheet

Headings

# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis

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

Lists

Unordered List

- Item 1
- Item 2
  - Subitem 2.1
* Item 3

Ordered List

1. First
2. Second
   1. Subitem
[Text](https://example.com)
[OpenAI](https://openai.com)

Images

![Alt text](https://via.placeholder.com/150)

Code

Inline Code

`inline code`

Code Block

```language function greet() { console.log(“Hello, world!”); } ```

Blockquotes

> This is a quote.
>> Nested quote.

Horizontal Rule

---
***
___

Tables

| Syntax | Description |
|--------|-------------|
| Header | Title       |
| Cell   | Text        |

Task Lists

- [x] Task complete
- [ ] Task incomplete

Escaping Characters

Use a backslash \ to escape Markdown characters:

\*escaped asterisk\*
Commandsdocumentationcheatsheet

Linux Commands Cheat Sheet