This page contains every type of content supported by the editor. Use it to check how headings, lists, tables, code, quotes, and inline styles are displayed.
A regular paragraph can include bold text, italics, strikethrough text, and inline code. These styles can be combined: bold italic or bold with code inside.
Colored text is set via the <span> tag: red, green, blue.
Superscript and subscript are also supported: H2O, E = mc2.
Below is an example of second- and third-level headings added by the toolbar.
A third-level heading is usually followed by an explanation or elaboration of the topic.
Used for fine-grained structuring within a subsection.
External link: official website. Automatic link: https://example.com. Internal link to a heading anchor: to the code section.
This is a short single-line quote.
A quote can span several paragraphs and contain formatting, links, and
inline code.— Quote author
| Upgrade | Description | Cost |
|---|---|---|
| Gold booster | Increases the amount of clan gold members receive | 1,000 |
| Second reduction | Reduces the time given to opponents to defend the boss | 2,500 |
| Money booster | Increases the amount of coins dropped from blocks | 1,750 |
| Left | Center | Right |
|---|---|---|
| Short text | Average value | 10 |
| Long line to test wrapping | OK | 1,250 |
| Value | — | 0 |
Inline code right in a paragraph: const total = items.length;.
A code block with Kotlin syntax highlighting:
fun deleteCategory(@PathVariable id: UUID): ResponseEntity<Void> {
categoryService.delete(id)
return ResponseEntity.noContent().build()
}A TypeScript code block:
export function greet(name: string): string {
return `Привет, ${name}!`;
}A block with no language specified:
$ npm run dev
> next dev
✓ ready on http://localhost:3000Text before the divider.
Text after the divider. Use --- on a separate line to visually separate meaningful sections of an article.
An image is inserted via the toolbar button or manually (ctrl + v):
Below is a short fragment that combines several elements at once.
Important. Before deleting a category, make sure it has no articles still linked to it. The corresponding endpoint:
httpDELETE /api/categories/{id}More details on the parameters are in the table below.
| Parameter | Type | Required |
|---|---|---|
id | UUID | yes |
force | boolean | no |
End of the test page.