# Guide Style Examples

Use this file as a copy/paste reference when writing guides.

## 1) Sections and Headings

# Main Title
## Section Title
### Subsection Title

Example:

## Event Overview
Short intro text for the section.

### Schedule
- Monday: 19:00 Server Time
- Wednesday: 05:00 Server Time

## 2) Emphasis and Inline Formatting

- **Bold text** for key values.
- *Italic text* for softer emphasis.
- `Inline code` for keys, shortcuts, IDs, paths, commands.

Example:
- Press `N` to open ranking.
- Reset happens every **Friday**.

## 3) Lists

Unordered list:
- Item A
- Item B
- Item C

Ordered list:
1. Step one
2. Step two
3. Step three

## 4) Links and Images

Link:
[Open Website](https://example.com)

Clickable image preview:
[![Preview Alt Text](/images/guides/example-image.jpg)](https://imgur.com/example)

## 5) Notes / Warnings

> Note: Rewards are subject to change.

> Warning: Unclaimed rewards are lost at next tier.

## 6) Code Block

```txt
Command: Press V to drink from selected calabash.
```

## 7) Tables

### 7a) Markdown Table (simple)

| Item | Cost |
|---|---:|
| Weapon | 2,000,000,000 Silver |
| Armor | 2,000,000,000 Silver |

### 7b) HTML Table (recommended for guaranteed render)

<table class="wk-fac-mini-table">
  <thead>
    <tr>
      <th>Rank</th>
      <th>Reward (CP)</th>
    </tr>
  </thead>
  <tbody>
    <tr><td>Top 1</td><td>250</td></tr>
    <tr><td>Top 2</td><td>230</td></tr>
    <tr><td>Top 3</td><td>210</td></tr>
  </tbody>
</table>

## 8) Quick Guide Template

---
title: Example Guide Title
category: New player
---

# Example Guide Title

Short summary of what this guide explains.

## Requirements
- Level 90+
- 3,000,000 Silver

## How It Works
1. Go to the NPC.
2. Select the event option.
3. Enter within 3 minutes.

## Rewards
- Win: 1,500,000 Silver, 10 CP, 3% EXP
- Lose: 750,000 Silver, 5 CP, 1.5% EXP

## Notes
- Times are Server Time.
- Values may change after updates.
