# README

## Markdown Cheatsheet

### Headers
```markdown
# H1
## H2
### H3
#### H4
##### H5
###### H6
```

### Emphasis
```markdown
*Italic* or _Italic_
**Bold** or __Bold__
~~Strikethrough~~
```

### Lists
#### Unordered List
```markdown
- Item 1
- Item 2
  - Subitem 2.1
  - Subitem 2.2
```
#### Ordered List
```markdown
1. First item
2. Second item
   1. Subitem 2.1
   2. Subitem 2.2
```

### Links
```markdown
[OpenAI](https://openai.com)
[GitHub](https://github.com)
```

### Images
```markdown
![Markdown Logo](https://markdown-here.com/img/icon256.png)
```

<img src="text.jpg" />
### Code Blocks
#### Inline Code
```markdown
`inline code`
```
#### Block Code
```markdown
```python
print("Hello, world!")
```
```
```javascript
console.log("Hello, world!");
```
```
```c++
#include <iostream>
int main() {
    std::cout << "Hello, world!" << std::endl;
    return 0;
}
```
```

### Blockquotes
```markdown
> This is a blockquote.
```

### Tables
```markdown
| Header 1 | Header 2 |
|----------|----------|
| Row 1    | Data 1   |
| Row 2    | Data 2   |
```

### Checklists
```markdown
- [x] Task 1
- [ ] Task 2
```

### Horizontal Line
```markdown
---
```

### Escaping Characters
```markdown
\*This is not italic\*
```

---

## Starting Template
```markdown
# Project Title

## Table of Contents
- [Introduction](#introduction)
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)

## Introduction
Briefly describe your project.

## Installation
```sh
# Install dependencies
git clone https://github.com/your-repo.git
cd your-repo
npm install
```

## Usage
```sh
# Run the project
npm start
```

## Contributing
Guidelines for contributing.

## License
Specify the license.
```

