Hytale Modding
Hytale Modding

5.1 - Markdown

Markdown formatting reference for wiki pages.

Written by Dobya

Text formatting

**Bold text**
*Italic text*
~~Strikethrough~~
**_Bold and italic_**

Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4

Lists

Unordered

- Item
- Item
  - Nested item
  - Nested item
- Item

Ordered

1. First
2. Second
   1. Nested
   2. Nested
3. Third

Task list

- [x] Done
- [ ] Not done
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")

Images

The site may contain images from external resources.

![Alt text](https://example.com/image.png)
![Alt text](https://example.com/image.png "Image title")

Code

Inline

Use `code` inside text.

Block

```js
const hello = "world";
console.log(hello);
\```

Supported language hints: js, ts, css, html, json, md, bash, and others.

Blockquotes

> This is a blockquote.
> It can span multiple lines.
>
> And multiple paragraphs.

Alerts

Alerts are styled blockquotes for highlighting important information.

> [!NOTE]
> Useful information the reader should know.

> [!TIP]
> Helpful advice for doing things better.

> [!IMPORTANT]
> Key information the reader must be aware of.

> [!WARNING]
> Potential issues the reader should watch out for.

> [!CAUTION]
> Actions that may cause problems or data loss.

Tables

| Column A | Column B | Column C |
| -------- | -------- | -------- |
| Cell     | Cell     | Cell     |
| Cell     | Cell     | Cell     |

Alignment:

| Left     | Center   | Right    |
| :------- | :------: | -------: |
| Cell     | Cell     | Cell     |

Horizontal rule

---

Footnotes

Some text with a footnote.[^1]

[^1]: This is the footnote content.

Escaping characters

\*Not italic\*
\# Not a heading
Info

Imported components are only available when editing via GitHub sync. The built-in editor supports custom components registered on the platform.