> ## Documentation Index
> Fetch the complete documentation index at: https://docs.craftingstudiopro.de/llms.txt
> Use this file to discover all available pages before exploring further.

# Markdown Guide

> Style your plugin page professionally using Markdown

## Overview

A professional-looking resource page builds trust and attracts more users. CraftingStudio Pro supports standard Markdown to help you showcase your work effectively.

## Common Syntax

Use these standard Markdown elements to structure your description.

### Headings & Text

```markdown theme={null}
# H1 Heading
## H2 Heading
### H3 Heading

**Bold text** and *italic text*.
~~Strikethrough~~
```

### Lists

```markdown theme={null}
* Item 1
* Item 2
  * Sub-item

1. Numbered 1
2. Numbered 2
```

### Code Blocks

```yaml theme={null}
# config.yml
database:
  type: mysql
  host: localhost
```

### Badges (shields.io)

```html theme={null}
<a href="https://discord.gg/yourserver">
  <img src="https://img.shields.io/discord/123456789?color=7289da&logo=discord" 
       alt="Discord" />
</a>
```

<Tip>
  **Pro Tip:** Use Markdown previews like [markdownlivepreview.com](https://markdownlivepreview.com) to test your layout before publishing. An attractive design leading with key features and high-quality images results in significantly more downloads!
</Tip>
