毎日Discordを使っていますか?次に、 Discord(Discord)サーバーまたはDM(your DMs)で誰かが太字または色付きのテキストを使用しているのを見たことがあるでしょう。完全な初心者でも、独自のDiscord(Whether)サーバー(your own Discord server)を使用している場合でも、太字や斜体で書くなどの基本的なテキスト書式設定や、コードブロックを使用するなどの高度なテキスト書式設定を行うための簡単なコマンドを学ぶことができます。
Discordを使用している間、Markdownはバックグラウンドで実行される強力なシステムであり、すべてのテキストフォーマットを処理します。Markdownは、プラットフォームでのコミュニケーションに多様性を加えるのに役立ちます。
不和でテキストを太字にする方法(How to Bold Text in Discord)
メッセージ全体であろうとメッセージの一部であろうと、 Discord(Discord)で何かを強調したい場合は、太字のテキストを使用できます。
Discordでテキストを太字(bold text)にするには、メッセージの最初と最後に2つのアスタリスクまたは星(*)を使用します。
例:**bold text**。
注(Note):アスタリスクを使用するこのコードおよびその他のマークダウンコードの場合、標準の英語キーボードを使用している場合は、 (English)Shift + 8 キーボードショートカット(keyboard shortcut)を使用してアスタリスクを挿入できます。
不和でテキストをイタリック体にする方法(How to Italicize Text in Discord)
Discordのテキストをイタリック体(italicize text)にするには、メッセージの最初と最後に1つのアスタリスクを使用します。
例:*italicized text*。
不和でテキストに下線を引く方法(How to Underline Text in Discord)
Discordで(Discord)テキスト(underline text)に下線を付けるには、メッセージの最初と最後に2つのアンダースコア(_)を使用する必要があります。
例:__下線付きのテキスト__(__underlined text__)。
さまざまなテキストフォーマットオプションを組み合わせる方法 (How to Combine Different Text Formatting Options )
上記のテキストフォーマットオプションのいくつかを組み合わせることもできます。
太字の斜体のテキスト(bold italicized text)を作成するには、テキストの前後に3つのアスタリスク(*)を使用します。
例:***bold italicized text***。
テキストに下線を付けて斜体(underline and italicize text)にするには、メッセージの最初に1つのアスタリスクを付け、最後に1つのアスタリスクと2つのアンダースコアを付けた2つのアンダースコアを使用します。
例:__*underlined italicized text*__。
太字の下線付きテキスト(bold underlined text)を作成するには、メッセージの前に2つのアンダースコアと2つのアスタリスクを組み合わせ、メッセージの後に2つのアスタリスクと2つのアンダースコアを組み合わせます。
例:__**bold underlined text**__。
テキストを太字のイタリック体(underline bold italicize)で強調するには、メッセージを2つのアンダースコアと3つのアスタリスクで開始し、3つのアスタリスクと2つのアンダースコアで終了します。
例:__***underlined bold italics***__。
不和で取り消し線のテキストを作成する方法(How to Create Strikethrough Text in Discord)
メッセージに取り消し線付きのテキストを入力する場合は、 Discord(Discord)で取り消し線のテキストを使用できます。
取り消し線のテキスト(strikethrough text)を作成するには、メッセージの最初と最後に2つのチルダ(〜)を使用します。チルダを入力するには、Shift + ~キーボードショートカットを使用します。
例:~~取り消し線のテキスト~~
すべてのシンボルを不和で見えるようにする方法(How to Make All Symbols Visible in Discord)
使用しているすべてのチルダ、アスタリスク、アンダースコアを他のユーザーに表示させたい場合(絵文字を作成している場合など)、各記号の先頭にある円記号()を使用して、Markdownの書式設定をキャンセルし、テキストの一部としての記号。
例:\*\*\*see all symbols\*\*\*
不和でコードブロックを書く方法(How to Write Code Blocks in Discord)
テキストをバッククォート(*)で囲むと、1行のコードブロックを作成できます。
これにより、白いテキストに暗い背景が追加され、ユーザーが読みやすい形式で簡単なコードスニペットを表示および交換しやすくなります。
例:*単一行コードブロック*(`single-line code block`)。
より複雑なコードを共有できる複数行のコードブロックを作成するには、メッセージの最初と最後に3つのバッククォート(*)を使用します。
例:
```
multi-line
code
block```
不和でテキストに色を付ける方法(How to Color Text in Discord)
シンタックスハイライトと呼ばれる機能のおかげで、Discordチャットで色付きのテキストを使用(use colored text in your Discord chats)できます。この機能はコーディングで広く使用されており、プログラミング言語を定義し、コードの重要な部分に色を付けて、読みやすく理解しやすくすることができます。
(Use)複数行のコードブロックと構文の強調表示を使用して、色付きのテキストを作成します(create colored text)。メッセージの最初と最後にトリプルバックティックを使用する必要がありますが、特定の色を定義するキーワードも必要です。
- テキストを赤(Red)で着色するには、使用するキーワードはdiffです。テキストの前に(before your text)diffを使用して(diff)ハイフン(-)(hyphen (-)) を使用していることに注意してください。
例:
```diff
- red text
```
- テキストを青(Blue)で色付けするには、キーワードiniを使用し、テキストを角かっこで囲みます。
例:
```ini
[blue text]
```
- テキストを黄色(Yellow)に着色するには、キーワードfixを使用します。(fix.)
例:
```fix
yellow text
```
- テキストをオレンジ(Orange)色にするには、テキストの両側に角かっことともに キーワードcssを使用します。(css)
例:
```css
[orange text]
```
- テキストを緑色に着色するには、キーワード(Green)diffを使用できます。ただし、テキスト行の先頭に + signを追加する必要があります。
例:
```diff
+ green text
```
Discordのカラーテキストに関しては、特定の制限(limitations )があります。
- 各色に使用する構文の強調表示を覚えておく必要があります
- 他のユーザーは、デスクトップまたはラップトップで Discordを使用している場合にのみ色が表示されます。
- モバイルでは、色付きのテキストは常にデフォルトの黒(default black)として表示されます。
不和でテキストを隠す方法(How to Hide Text in Discord)
Discordには、ネタバレ警告を追加したり、チャットのテキストを非表示にしたりするオプションがあります。
- 他のユーザーがネタバレを読みたいかどうかを選択できるようにするには、テキストの先頭に /spoiler
- 非表示にするのがメッセージの一部である場合は、非表示にするテキストの最後に /spoiler
- テキストはスポイラーとして表示され、ユーザーはメッセージの内容を表示する前にそれをクリックする必要があります。
Discordでフォントを変更する方法(How to Change Font in Discord)
すべてのDiscordアプリで使用されるデフォルトのフォントは、薄いものから重いものまで(Uni Sans, from thin to heavy)、UniSansです。このフォントは、2009年にオリジナルのDiscordロゴに影響を与えました。
Discordアプリ内から直接フォントを変更することはできませんが、 LingoJamのようなオンラインの(LingoJam)Discordフォントジェネレーターを使用できます。
- LingoJamを開き(LingoJam)、左側のボックスにテキストを入力します。
- 右側のボックスから選択できるいくつかのフォントが表示されます。
- 好きなフォントを選択し、テキストをDiscordチャットにコピーします。
DiscordでBlockquoteを作成する方法(How to Create a Blockquote in Discord)
ブロック引用符は、メッセージの一部に下線を引いたり、引用符で囲まれたテキストを挿入したり、メールの返信テキストをエミュレートしたりするのに最適です。Discordメッセージにブロッククォートを追加するには、テキストの前に大なり記号(>)を追加するだけです。
例:> Blockquote in text。
不和で他のテキスト操作は可能ですか?(Are Other Text Manipulations Possible in Discord?)
幸いなことに、Discordには、上記の基本事項以外にも、提供できるものがたくさんあります。GitHubのこの広範なMarkdownチートシート(extensive Markdown cheatsheet)を使用して、 Discordにテーブル、リンク、画像、ヘッダー、リストを追加する方法を学ぶことができます。
以前にDiscord(Discord)でテキストフォーマットを使用したことがありますか?リストに含めるのを忘れたものはありますか?以下のコメントセクションで、 Discord(Discord)のテキストフォーマットのヒントとコツを 共有(Share)してください。
How to Format Text in Discord: Font, Bold, Italicize, Strikethrough, and More
Do уou uѕe Discord dаіly? Then you’ve probably seen somеone use bolded or colored text in a Discоrd serνer or in your DMs before. Whether you’re a complete beginner or have your own Discord server, you can learn simple commands to do basic text formatting like writing in bold or italics, as well as advanced text formatting like using code blocks.
While you’re using Discord, Markdown is a powerful system running in the background that handles all of the text formatting. Markdown helps you add variety to your communication on the platform.
How to Bold Text in Discord
If you want to emphasize something in Discord, whether it’s an entire message or just a part of it, you can use bolded text.
To bold text in Discord, use two asterisks or stars (*) at the beginning and end of your message.
Example: **bold text**.
Note: For this and other markdown codes that use the asterisk, if you’re using a standard English keyboard, you can insert an asterisk using a Shift + 8 keyboard shortcut.
How to Italicize Text in Discord
To italicize text in Discord, use one asterisk at the beginning and end of your message.
Example: *italicized text*.
How to Underline Text in Discord
To underline text in Discord, you’ll need to use two underscores (_) at the beginning and end of your message.
Example: __underlined text__.
How to Combine Different Text Formatting Options
You can also combine some of the text formatting options described above.
To create bold italicized text, use three asterisks (*) before and after your text.
Example: ***bold italicized text***.
To underline and italicize text, use two underscores with one asterisk in the beginning and one asterisk and two underscores at the end of your message.
Example: __*underlined italicized text*__.
To create bold underlined text, combine two underscores and two asterisks before and two asterisks with two underscores after your message.
Example: __**bold underlined text**__.
To underline bold italicize your text, start your message with two underscores and three asterisks and end it with three asterisks and two underscores.
Example: __***underlined bold italics***__.
How to Create Strikethrough Text in Discord
If you want to type crossed-out text in your message, you can use strikethrough text in Discord.
To create strikethrough text, use two tildes (~) at the beginning and end of your message. To type tilde, use the Shift + ~ keyboard shortcut.
Example: ~~strikethrough text~~
How to Make All Symbols Visible in Discord
If you want other users to see all of the tildes, asterisks, and underscores that you’re using (like if you’re making an emoji), use the backslash (\) at the beginning of each symbol to cancel Markdown’s formatting and show the symbols as part of the text.
Example: \*\*\*see all symbols\*\*\*
How to Write Code Blocks in Discord
You can create single-line code blocks if you surround your text with backticks (`).
This adds a dark background to white text, making it easier for users to view and exchange brief code snippets in a readable format.
Example: `single-line code block`.
To create multi-line code blocks that allow for sharing more complex code, use three backticks (`) in the beginning and end of your message.
Example:
```
multi-line
code
block```
How to Color Text in Discord
Thanks to a feature called syntax highlighting, you can use colored text in your Discord chats. This feature is widely used in coding and allows you to define the programming language and colorize essential parts of the code for easier reading and understanding.
Use multi-line code blocks and syntax highlighting to create colored text. You’ll need to use the triple backticks at the beginning and at the end of your message, but you’ll also need a keyword that defines a specific color.
- To color text in Red, the keyword to use is diff. Note the use of a hyphen (-) before your text with diff.
Example:
```diff
- red text
```
- To color text in Blue, use the keyword ini and surround your text with square brackets.
Example:
```ini
[blue text]
```
- To color text in Yellow, use the keyword fix.
Example:
```fix
yellow text
```
- To color your text in Orange, use the keyword css along with square brackets on each side of your text.
Example:
```css
[orange text]
```
- To color your text in Green, you can use the keyword diff. However, you need to add a + sign at the beginning of the text line.
Example:
```diff
+ green text
```
There are certain limitations when it comes to colored text in Discord.
- You have to remember which syntax highlighting to use for each color
- Other users will only see the colors if they’re using Discord on their desktop or laptop.
- On mobile, colored text will always show as default black.
How to Hide Text in Discord
Discord offers an option to add spoiler alerts and hide text in your chats.
- To give other users the ability to choose whether they want to read a spoiler or not, you can type /spoiler at the beginning of your text.
- If it’s only a part of your message that you want to hide, add /spoiler at the end of the text you want to hide.
- The text will then display as a spoiler, and users will have to click on it before they can see the contents of the message.
How to Change Font in Discord
The default font used across all the Discord apps is Uni Sans, from thin to heavy. This font inspired the original Discord logo in 2009.
While it’s impossible to change the font from directly within the Discord app, you can use an online Discord font generator like LingoJam.
- Open LingoJam and type your text into the box on the left.
- You’ll see several fonts that you can choose from the box on the right.
- Select the font that you like and copy the text into your Discord chat.
How to Create a Blockquote in Discord
Blockquotes are great for underlining a part of your message, inserting quoted text, or emulating reply text in emails. To add a blockquote into your Discord message simply add a greater than sign (>) before your text.
Example: > Blockquote in text.
Are Other Text Manipulations Possible in Discord?
The good news is, Discord has much more to offer aside from the basics listed above. You can use this extensive Markdown cheatsheet from GitHub and learn how to add tables, links, images, headers, and lists in Discord.
Have you used text formatting in Discord before? Is there something we forgot to include in our list? Share your Discord text formatting tips and tricks in the comments section below.