How to Create Strikethrough and Other Stylized Text in Discord i6v15

Most chat applications usually only have the regular text and hundreds of emojis and stickers to choose from. Discord is different. You can type your text in a variety of creative ways: bold, italicize, underline, strikethrough, and even in colors!. (Spoiler: and there’s more!!!)

Games are fun and all. With Discord, you can keep chatting with people and having fun while at it. Chat using Discord text markdown to express yourself better.

How to Use Discord Text Markdown 21n6z

Emphasize your message to others by using formatted text. Discord Text Markdown allows s to type normal text and add formatting codes to it. This combination produces the text formatting that makes conversations in Discord interesting.

If you find this manual method hard to type every time, you can use online markdown editors such StackEdit to create cool text formatting with live preview.

1. How to Create Discord StrikethroughText 342d4h

Simply put two tildes ( ~~ ) on the start and end of the text you want to strikethrough.

~~Text between the tildes be crossed out~~

2. How to Create Italicized Text 2wvh

Put a single asterisk or star ( * ) on the start and end of the text you want to italicize.

*Text between the asterisk will be italicized*

3. How to Create Bold Text 5d6h26

Put two asterisks or stars ( ** ) on the start and end of the text you want to bold.

**Text between the asterisks will be bold**

Put three asterisks or stars ( *** ) on the start and end of the text you want to bold & italicize.

***Text between the asterisks will be bold & italicized***

5. How to Create Underline Text 1s4q6d

Put two underscores ( __ ) on the start and end of the text you want to underline.

__Text between the underscores will be underlined__

6. How to Combine TextStyles 272r5t

You can combine asterisks, underscores, and tildes to make our text even more unique. It doesn’t matter what order as long as if you put it in reverse on the other side. Think of the asterisks, underscores, and tildes as numbers. If you put 123 on the start, you got to put 321 at the end.

Underlined and Italicized Text

*__Text between will be underlined and italicized__*

Note: what format goes first doesn’t matter as long as you close the formats correctly.

Underlined and Strikethrough Text

__~~Text between will be underlined and crossed out~~__

Every Format (#1-5) Put in Text

__~~***Text between will be italicized, bold, underlined, and crossed out***~~__

Also Read: Top Most Invited Discord Bots | You Must Try Using

Creating Blocks and Empty Lines 695l6d

1. How to Insert Spoiler Tags 42714m

Maybe you just watched the latest hot movie and you’re dying to talk about it. Prevent spoiling everyone else by using spoiler tags. This way they can’t blame you if they spoil themselves.

Put one vertical bar or pipe ( | ) on the start and end of the text you want to hide.

Spoiler Text: | You wanted to look didn’t you? |

The text will be hidden inside a black background and clicking it will reveal the underlying text.

2. How to Insert Empty Lines 4v435b

Long rants are hard to read. You want to break them up in paragraphs to encourage people to read it.

Type an empty line: SHIFT+ENTER

I just want to rant about everything!

(Press SHIFT+ENTER)

If you do it right, the line above should be empty

3. How to Create Block Quotes 661a6o

Maybe you want to organize your text.

Put one greater than sign ( > ) on the start of the text you want to quote.

> This text will be in a blockquote

Put three greater than sign ( >>> ) on the start of the text you want to quote.

>>> All text until the end of the message

Regardless of what line

Will be included in the blockquote

4. How to Create Code Blocks 2i1f3p

Aside from being in a code block of its own, text here looks different in font style.

Type a backtick: (`) (left of 1 in most keyboards)

Single Line Code Block

Put one backtick ( ` ) on the start and end of the text you want to put in a single line block.

` This is a single line code block `

Multiple Line Code Block

Put three backticks ( “` ) on the start and end of the text you want to put in a multiline block.

“` This is a multiline code block

**Text formatting doesn’t work here**

This is another option to put your text in if you want to keep your asterisks, etc. “`

Using Colored Text in Discord 16712e

To color text, they have to be in code blocks. Also, the color syntax has to be in a different line. There are multiple discord color codes available.

1. Plain Grey Colored Text in Discord 2d3m5n

  • Bash Syntax 4nn5o

“`bash

# Text after a hashtag or number sign or pound sign is grey

# (technically it’s called an “octothorp”)

“`

Note: The Py Syntax will also create grey text after a number sign. Just change ‘bash’ to ‘py’ if that’s easier to . (Or you can just go back to this guide J )

  • INI Syntax 3v6p1

“`ini

; line after a semicolon text is grey

; adding a regular line without semi-colon will remove the grey formatting

unless you add blue lines [ blue text inside brackets]

“`

  • MD (Markdown) Syntax 391l1w

“`md

> grey text. single-line only

> needs a new greater than sign for every new line you want to be grey

“`

2. Red Colored Text in Discord 6b1w

  • Diff Syntax 2t121u

“`diff

– Here is a red text. Note that you need the hyphen

“`

  • ML Syntax 2o65j

“`ml

‘text inside single quote marks is red’

“`

  • Autohotkey Syntax 282q66

Declare syntax and put a single A (uppercase or lowercase) and an underscore besides the text you want red. Note that it can only work for one text aka No Spaces.

“`autohotkey

A_bigAorSMALLaTHENunderscoreWILLmakeTEXTwithoutSPACEafterRED

“`

3. Orange Colored Text in Discord 6g615l

  • CSS Syntax 5g1m4t

“`css

[ Text between brackets will be orange ]

“`

Note: The Asciidoc Syntax will also create orange text if you enclose it in square brackets. Just change ‘css’ to ‘asciidoc’ if you prefer this (Each formatting syntax has their own characteristics)

  • Prolog Syntax 2pm1y

“`prolog

All Words That Starts With A Capital Letter Is Orange

“`

  • Py Syntax 4w2d5u

“`py

@Text after at symbol is orange

“`

  • CS Syntax b4m4z

“`cs

# Text after a hashtag or number sign or pound sign is orange

“`

4. Yellow Colored Text in Discord 1q3x6n

Note: GLSL and P also work the same way. Just change the ‘cs’ to ‘glsl’ or ‘p’. Use whatever syntax you prefer.

  • Fix Syntax 6n3i4p

“`fix

Fix makes every text inside the code block yellow.

Yes. I mean even this line

“`

  • Apache Syntax 4c423o

Note that it can only work for one text aka No spaces and other punctuations except underscores.

“`apache

%{Text_Cannot_Have_Spaces_BUT_it_is_yellow}

“`

  • ML Syntax 2o65j

“`ml

All Words That Starts With A Capital Letter Is Yellow

“`

  • MD (Markdown) Syntax 391l1w

“`md

< inside this greater and less than signs is single line yellow text >

< you can make yellow text span multiple lines

Yellow text also

Yep. Also Yellow>

“`

  • Bash Syntax 4nn5o

Text after dollar sign ( $ ) is yellow. Note that it can only work for one text aka no spaces and other punctuations except underscores.

“`bash

$NoSPACEallowedBUT_underscoresARE_fine

“`

5. Green Colored Text in Discord w2bi

  • Diff Syntax 2t121u

“`diff

+ Green Text For Green Minded People. J

! This line is also green

“`

  • CSS Syntax 5g1m4t

“`css

“Green text in quotation marks”

Text is green even without the quotation marks though

“`

6. Blue Colored Text in Discord 191n1g

  • INI Syntax 3v6p1

“`bash

[Enclose the text in brackets to make it blue]

“`

  • CSS Syntax 5g1m4t

After declaring css syntax, put a period (.)  before the text you want to highlight blue.

Note: that it can only work for one text aka No spaces and other punctuations except underscores.

“`css

.BlueText_cannot_have_spaces

“`

  • MD (Markdown) Syntax 391l1w

“`md

# besides pound sign, hashtag or number sign is blue text

Without equal sign regular white text

One line above 2 or more equal signs makes it blue

=====

One line above 2 or more dashes makes blue text

—–

All the text including the equal signs and dashes show up in the message

“`

  • Asciidoc Syntax 233h2

“`asciidoc

= besides equal sign is blue text

Without equal sign regular white text

One line above 2 or more equal signs makes it blue

=====

One line above 2 or more dashes makes blue text

—–

All the text including the equal signs and dashes show up in the message

“`

  • CoffeeScript Syntax 6l353k

Text without space is blue before = and -> symbols

“`coffeescript

TextWithoutSpaceIsBlue =->

TextWithoutSpaceIsBlue = ->

“`

  • Bash Syntax 4nn5o

Text without space is blue before (){ symbol

“`bash

TextWithoutSpaceIsBlue(){

“`

7. Cyan Colored Text in Discord 391s3z

  • Fix Syntax 6n3i4p

“`fix

= text after equal is cyan

“`

  • XL Syntax 2u4048

“`xl

‘Just put single quotes around text to make it cyan’

“`

  • Py Syntax 4w2d5u

“`py

‘Just put single quotes around text to make it cyan’

“`

Note: Prolog syntax also works the same way. Just change the ‘py’ to ‘prolog’.

  • Bash Syntax 4nn5o

“`bash

“Just put double quotes around text to make it cyan”

“`

Note: CoffeeScript, P, JSON, and ML syntax also works the same way. Just change the ‘bash’ to ‘coffeescript’, ‘p’, ‘json’, or ‘ml’.

8. How to Highlight Text in Discord 3b3s4n

  • Tex Syntax 3l4i2v

“`tex

$ single line text can be highlighted after a dollar sign

“`

How to Make Lists in Discord 3f1o57

1. Numbered Lists in Discord p2m2i

Autohotkey Syntax

“`AutoHotKey

1. Number is green but the text that follows is white

2. You can put a period besides the number if you prefer.

3. The number will still be green but the period and text after is white

4. Add as many numbers are you want

“`

Note: XL, CS, GLSL, Prolog, ML, MD, and Py syntax also work the same way. Just change the ‘AutoHotkey’ to the lowercase of the syntax you prefer like mentioned above.

2. Bullet Points in Discord 6a355n

Asciidoc Syntax

“`asciidoc

* asterisk is red but the text is plain white

– hyphen is also red and the text is also plain white

“`

Note: In MD (Markdown) Syntax, the asterisk is also red but the text beside is plain white. You can just change the syntax if you prefer ‘md’ instead because it’s shorter.

3. Lettered Lists in Discord 3358g

ML Syntax

“`ml

A since all capital letter starting text is yellow

B as long as you type the rest in lowercase

C or enclose it in single or double quote marks

D you can implement a lettered list

E lowercase text is grey

“`

With all these tips and tricks at your disposal, you’ll be able to make your discord chats more fun and lively. Feel free to us if you have further questions!

Sign in
Welcome! to your
recovery
Recover your
A will be e-mailed to you.