Markdown#

Discord supports the following markdown.

Text Formatting#

Italics

*italics*

_italics_

Bold

**bold**

Underline

__underline__

Strikethrough

~~Strikethrough~~

Spoilers

||text||

Formatting Combination

Text formatting can be combined together.

Organizational#

Subtext#

To create a subtext is similar to a header, except instead of just a pound (#), you prefix it with a dash (-#).

-# This is a subtext.

Lists#

Important

Don’t forget to add a space between the list bullet (-, *, 1., etc) and your text!

You can create a bulleted list using either a dash (-) or an asterisk (*) in the beginning of each line.

- List of stuff
- and things
* and more things

Tip

You can also indent your list by adding 2 spaces before the dash or asterisk at the beginning of each line.

* List of stuff
  * and things
  - and more things

Code Blocks#

You can make your own code blocks by wrapping your text in backticks (`).

`This is an inline code block.`

If you want to create a multi-line code block, wrap your text in three backticks (```) on each ends.

```This is a
multiline code block.```

Syntax Highlighting

You can integrate syntax highlighting to your code block by adding a language syntax after the first three backticks (```), and the start of your text shall be in a new line.

```py
print("Hello, World!")
```

Block Quotes#

Important

Don’t forget to add a space between the leading > and your text!

To use a block quote, prefix a ending angle bracket (>) at the beginning of a line of text.

> Sample text 1
Sample text 2
Sample text 3

Tip

To add multiple lines to a single block quote, prefix three ending angle brackets (>>>) before the first line.

>>> Sample text 1
Sample text 2
Sample text 3