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 3Text Styles
**bold text**
*italic text*
~~strikethrough~~
`inline code`Links
[Link text](https://example.com)Lists
Bullet Points
- First item
- Second item
- Nested item
- Third itemNumbered Lists
1. First item
2. Second item
3. Third itemCode 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
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