UnifiedHytale Docs

Markdown Guide

How to format your project descriptions using Markdown.

Project descriptions on UnifiedHytale support full GitHub Flavored Markdown with live preview.

Basic Formatting

Headers

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

Text Styles

**bold text**
*italic text*
~~strikethrough~~
`inline code`
[Link text](https://example.com)

Lists

Bullet Points

- First item
- Second item
  - Nested item
- Third item

Numbered Lists

1. First item
2. Second item
3. Third item

Code Blocks

```java
public class Example {
    public static void main(String[] args) {
        System.out.println("Hello, Hytale!");
    }
}
```

Supported languages: java, json, yaml, javascript, python, and more.

Tables

| Feature | Status |
|---------|--------|
| Multiplayer | ✅ |
| Singleplayer | ✅ |
| Performance Mode | ❌ |

Images

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

Blockquotes

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

Horizontal Rules

---

Tips

Use the preview tab while editing to see how your description will look!

  • Keep descriptions scannable with headers and lists
  • Use code blocks for installation commands
  • Include screenshots in your gallery instead of embedding
  • Link to external documentation if needed

On this page