Markdown Guide
GameVox supports full markdown formatting in text channels, DMs, announcements, descriptions, forum posts, and anywhere you can type.
Paste from websites: When you copy formatted text from a website and paste it into GameVox, the formatting is automatically converted to markdown. Bold, lists, tables, links, and more carry over.
Basic Formatting
Bold
Italic
Bold Italic
Strikethrough
Combining Styles
Headings
Use # symbols at the start of a line. More # symbols = smaller heading.
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Custom Heading IDs
Add {#your-id} at the end of a heading to set a custom anchor ID. Useful for linking directly to a section.
Server Rules
Voice Channels
Links & Images
Links
Images
Embed an image by URL. Different from uploading a file — this links to an image hosted elsewhere.
Code
Inline Code
print() function to debug.Fenced Code Block
Wrap code in triple backticks. Optionally add a language name after the opening backticks.
function greet(name) {
return "Hello, " + name;
}
Auto-detection: When you paste code into GameVox, it automatically detects the language and wraps it in a code block for you.
Blockquotes
Simple Blockquote
This is a quoted message.
It can span multiple lines.
Nested Blockquotes
Someone said this.And someone quoted them.And then someone quoted that.
Blockquotes with Formatting
Important: You can use any formatting inside blockquotes, includingcodeandstrikethrough.
Lists
Unordered List
- First item
- Second item
- Third item
Ordered List
- Step one
- Step two
- Step three
Task Lists
Create checklists with - [ ] for unchecked and - [x] for checked items.
- Set up the server
- Create channels
- Invite the squad
- First game night
Tables
Create tables using pipes | and dashes -. The second row defines column alignment.
Basic Table
| Game | Players | Status |
|---|---|---|
| Rust | 4/10 | Online |
| Minecraft | 8/20 | Online |
| Valheim | 0/10 | Offline |
Column Alignment
Use colons in the separator row to control alignment: :--- left, :---: center, ---: right.
| Item | Qty | Price |
|---|---|---|
| Sword | 1 | 500g |
| Potion | 20 | 50g |
| Shield | 1 | 300g |
Horizontal Rules
Create a divider line with three or more dashes, asterisks, or underscores on their own line.
Section two content.
Spoiler
Wrap text in double pipes to hide it behind a spoiler. The reader clicks to reveal.
Highlight
Wrap text in double equals signs to highlight it.
Subtext
Start a line with -# to render it as small, muted text. Useful for disclaimers, fine print, or side notes.
Last updated March 2026
Must be in voice to qualify. Mods have final say.
Superscript & Subscript
Superscript
GameVox is the bestcitation needed
Subscript
CO2 is carbon dioxide.
Footnotes
Add references with [^id] in your text, and define them with [^id]: text at the bottom.
Definition Lists
Define terms by placing the term on one line and its definition on the next line starting with : .
- Ping
- The round-trip latency between you and the voice server.
- Jitter
- Variation in packet arrival times. Lower is better.
Quick Reference
All supported markdown syntax at a glance.
| Syntax | Result |
|---|---|
| **bold** | bold |
| *italic* | italic |
| ~~strikethrough~~ | |
| ||spoiler|| | Spoiler (click to reveal) |
| ==highlight== | highlight |
| `inline code` | inline code |
| ```code block``` | Fenced code block |
| # Heading | Heading (h1–h6) |
| ## Title {#custom-id} | Heading with custom anchor ID |
| [text](url) | Clickable link |
|  | Embedded image |
| > quote | Blockquote |
| >> nested | Nested blockquote |
| - item | Bulleted list |
| 1. item | Numbered list |
| - [x] done | Task list (checked) |
| - [ ] todo | Task list (unchecked) |
| | table | | Table |
| --- | Horizontal rule |
| -# small text | small text |
| ^superscript^ | superscript |
| ~subscript~ | subscript |
| [^1] / [^1]: text | Footnote |
| Term : Definition | Definition list |