Update test post

This commit is contained in:
2025-11-19 12:35:05 +03:00
parent f6b45acb16
commit dc7eb8b955
4 changed files with 96 additions and 57 deletions

View File

@@ -0,0 +1,96 @@
# Markdown Test Post
Это пробный пост с тестированием возможностей Markdown рендера.
<!-- more -->
# Заголовок 1
## Заголовок 2
### Заголовок 3
#### Заголовок 4
# Формат текста
---
**Жирный текст**
_Курсив_
~~Перечеркнутый~~
# Цитаты
---
> Цитата — это дословная выдержка из какого-либо текста или
> речи, используемая для подтверждения своей мысли,
> иллюстрации, критики или как цитата из научного текста.
> Примеры цитат включают знаменитые изречения Сократа ("Я
> знаю, что ничего не знаю") и фразы из произведений или
> крылатые выражения, как, например, "Не все то золото, что
> блестит".
> Это первый уровень цитаты
>
> > Это второй уровень цитаты
>
> Снова первый уровень
> ## Заголовок
>
> 1. Элемент 1
> 2. Элемент 2
>
> Пример кода:
> `System.out.pringln("Hello, world!");`
# Список
---
- [Test 1](#test)
- [Test 1.1](#test)
- [Test 1.2](#test)
- [Test 1.3](#test)
- [Test 1.3.1](#test)
- [Test 1.3.2](#test)
- [Test 2](#test)
- [Test 3](#test)
- [Test 3.1](#test)
# Блок кода
---
`System.out.pringln("Hello, world!");`
```java
Parser parser = Parser.builder().build();
Node document = parser.parse("input text");
```
```java
HtmlRenderer renderer = HtmlRenderer.builder().escapeHtml(true).build();
renderer.render(node);
```
# Таблица
---
| Column 1 | Column 2 | Column 2 |
|--------------|---------------|-----------|
| First Name 1 | Second Name 1 | Address 1 |
| First Name 2 | Second Name 2 | Address 2 |
| First Name 3 | Second Name 3 | Address 3 |
| First Name 4 | Second Name 4 | Address 4 |
# Изображения
---
![Test](img.png)

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -1,21 +0,0 @@
# Test Post
This is my second test post.
Parses input text to a tree of nodes. Start with the builder method, configure the parser and build it. Example:
```java
Parser parser = Parser.builder().build();
Node document = parser.parse("input text");
```
<!-- more -->
Renders a tree of nodes to HTML. Start with the builder method to configure the renderer. Example:
```java
HtmlRenderer renderer = HtmlRenderer.builder().escapeHtml(true).build();
renderer.render(node);
```
![Test](img.png)

View File

@@ -1,36 +0,0 @@
# Readme
This is first test post
## Test header
```java
// Test code block
public class Test {
}
```
<!-- more -->
Test List:
- first
- second
- third
# Заголовок
## Подзаголовок
**Жирный** и _курсив_
- список
> цитата
`код` и блоки кода
| column1 | column2 | column2 |
|---------|---------|---------|
| awd | dsa | dsads |
| awdwa | fdad | fdsfdsa |