Заголовки
Используйте # для создания заголовков. Один # — самый большой, шесть — самый маленький.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Форматирование текста
Жирный, курсив, зачёркнутый текст и строчный код.
**Bold text**
*Italic text*
***Bold and italic***
~~Strikethrough text~~
`Inline code`Bold text
Italic text
Bold and italic
Strikethrough text
Inline code
Ссылки
Создавайте гиперссылки с inline-синтаксисом.
[OpenAI](https://openai.com)
[Link with title](https://example.com "Optional title")
<https://automatic-link.com>Изображения
Встраивайте изображения с альтернативным текстом.

Код
Строчный код в обратных кавычках и блоки кода в тройных обратных кавычках.
Here is some `inline code` in a sentence.
```javascript
function hello(name) {
console.log(`Hello, ${name}!`);
}
```
```python
def greet(name):
return f"Hello, {name}!"
```Here is some inline code in a sentence.
function hello(name) {
console.log(`Hello, ${name}!`);
}
def greet(name):
return f"Hello, {name}!"
Списки
Упорядоченные, неупорядоченные и списки задач.
### Unordered list
- Item one
- Item two
- Nested item
- Another nested
- Item three
### Ordered list
1. First step
2. Second step
1. Sub-step A
2. Sub-step B
3. Third step
### Task list
- [x] Completed task
- [ ] Pending task
- [ ] Another taskUnordered list
- Item one
- Item two
- Nested item
- Another nested
- Item three
Ordered list
- First step
- Second step
- Sub-step A
- Sub-step B
- Third step
Task list
- Completed task
- Pending task
- Another task
Таблицы
Создавайте таблицы с помощью вертикальных черт и дефисов.
| Feature | Status | Notes |
| --- | --- | --- |
| Tables | ✅ | Pipe and dash syntax |
| Alignment | ✅ | :--, :--:, --: |
| Cell content | ✅ | Text, links, inline code |
| Left | Center | Right |
| :--- | :---: | ---: |
| Left-aligned | Centered | Right-aligned |
| 1 | 2 | 3 || Feature | Status | Notes |
|---|---|---|
| Tables | ✅ | Pipe and dash syntax |
| Alignment | ✅ | :--, :--:, --: |
| Cell content | ✅ | Text, links, inline code |
| Left | Center | Right |
|---|---|---|
| Left-aligned | Centered | Right-aligned |
| 1 | 2 | 3 |
Цитаты
Цитируйте блоки текста с помощью символа >.
> This is a blockquote.
> It can span multiple lines.
>
> ## Heading inside a quote
> - Lists work too
> **Nested quotes:**
> > Deeply nested quote
> > > Even deeperThis is a blockquote. It can span multiple lines.
Heading inside a quote
- Lists work too
Nested quotes:
Deeply nested quote
Even deeper
Горизонтальные линии
Добавьте горизонтальную линию с помощью трёх или более дефисов, звёздочек или подчёркиваний.
Text above
---
***
___
Text belowText above
Text below
Зачёркивание
Зачёркивайте текст двойными тильдами.
This is ~~deleted text~~ still visible.
~~Entire paragraph that has been struck through for review purposes.~~
Mix of ~~strikethrough~~ and normal text.This is deleted text still visible.
Entire paragraph that has been struck through for review purposes.
Mix of strikethrough and normal text.