A full reference for Fluxer's Markdown formatting system.
| Syntax | Output |
|---|---|
**bold** |
bold |
*italic* |
italic |
__underlined__ |
underlined |
~~strikethrough~~ |
|
||spoiler|| |
hidden until clicked |
| Syntax | Description |
|---|---|
[text](https://example.com) |
Hyperlink with custom label |
<https://example.com> |
Plain URL embed |
<user@example.com> |
Email mention |
<+1234567890> |
Phone number (call) |
<sms:+1234567890> |
Phone number (SMS) |
<@username> or <@!user> |
User mention |
</name:id> or </kick user:12345> |
Slash command reference |
<@&role> |
Role mention |
<#channel> |
Channel link |
Link directly to sections inside a server:
| Syntax | Destination |
|---|---|
<id:customize> |
Customize channel |
<id:linked-roles:123456> |
Linked roles section |
Available navigation types:
customize = GuildNavKind.Customize
browse = GuildNavKind.Browse
guide = GuildNavKind.Guide
linked-roles = GuildNavKind.LinkedRoles
Wrap your code in triple backticks with an optional language name for syntax highlighting:
```javascript
console.log("hello world")
```Unlike Discord, Fluxer supports LaTeX natively - great for math and academic notation. New to it? Check out the LaTeX Wikipedia page.
```latex
\int_0^\infty e^{-x} dx
```| Syntax | Description |
|---|---|
> text |
Blockquote |
# Heading |
H1 - largest heading |
#### Heading |
H4 - smaller heading |
- item |
Unordered list item |
Callout boxes to draw attention to something important:
> [!NOTE] Useful info the reader should know.
> [!TIP] Helpful advice or shortcut.
> [!IMPORTANT] Key information, don't skip this.
> [!WARNING] Could cause issues if ignored.
> [!CAUTION] Potential risk or side effect.Note
GitHub renders these natively too, so this README will show them as real callout boxes.
Wrap a Unix timestamp in <t:> tags. The format flag after the colon controls how it displays:
| Syntax | Format | Example Output |
|---|---|---|
<t:1183165200:R> |
Relative | 5 minutes ago |
<t:1183165200:T> |
Long time | 3:45:12 PM |
<t:1183165200:d> |
Short date | 06/29/2007 |
<t:1183165200:D> |
Long date | June 29, 2007 |