Headings Link to heading

# H1 - Largest
## H2 - Large
### H3 - Medium
#### H4 - Small

Text Formatting Link to heading

**bold**
*italic*
~~strikethrough~~
`code`

bold italic strikethrough code


Lists Link to heading

Unordered:

- first
- second
  - nested
- third

Ordered:

1. first
2. second
3. third

[text](https://url.hu)
![alt text](image.jpg)

Quote Link to heading

> This is a quote
> on multiple lines

This is a quote on multiple lines


Code block Link to heading

Inline: `code`

Block:

```bash
echo "hello"
```
echo "hello"

Horizontal line Link to heading

---

Table Link to heading

| Column 1 | Column 2 | Column 3 |
|---|---|---|
| data | data | data |
| data | data | data |
Column 1 Column 2 Column 3
data data data
data data data

Checkbox (task list) Link to heading

- [x] done
- [ ] in progress
- [ ] in planning
  • done
  • in progress
  • in planning

Hugo front matter Link to heading

+++
title = "Post title"
date = 2026-02-22
draft = false
tags = ["tag1", "tag2"]
categories = []
+++

Tips Link to heading

  • Entries with draft = true will not be deployed
  • An empty line is required between paragraphs
  • Two spaces at the end of a line = line break (or empty line)
  • Hugo reads entries from the content/posts/ folder
  • Images are placed in the static/images/ folder