Skip to content
All referenceText Formatting

Markdown Bold

Learn how to bold text in markdown using asterisks or underscores. Syntax, examples, platform support, and common mistakes.

What is markdown bold?

Bold text in markdown is created by wrapping words with double asterisks (**) or double underscores (__). Bold draws attention to important words and phrases, making your content easier to scan.

Syntax

Asterisks

The most common way to bold text. Works everywhere.

Result
bold text

Underscores

Alternative syntax. Some parsers don't support underscores mid-word.

Result
bold text

Bold + Italic

Combine three asterisks for bold and italic simultaneously.

Result
bold and italic

Platform support

PlatformSupportedNotes
GitHubYes
GitLabYes
DiscordYesBoth ** and __ work
SlackYesUses *single asterisks* for bold
RedditYes
Stack OverflowYes
NotionYes
ObsidianYes

Common mistakes

Wrong
** bold text **
Right
**bold text**

Spaces inside the asterisks will prevent bold from rendering. The asterisks must touch the text.

Wrong
**bold text*
Right
**bold text**

Mismatched asterisks — you need exactly two on each side for bold.

Wrong
__bold__inword
Right
**bold**inword

Underscores don't work mid-word on most platforms. Use asterisks instead.

Tips for bold

1Prefer asterisks

Asterisks (**) work everywhere. Underscores (__) can fail mid-word on GitHub and other platforms.

2Don't overuse bold

If everything is bold, nothing stands out. Reserve bold for key terms, warnings, and important phrases.

3Combine with italic

Use three asterisks (***) for bold italic, or nest them: **this is _bold and italic_**.

***important note***

Frequently asked questions

Everything you need to know.

1

What is the shortcut for bold in markdown?

Wrap text with double asterisks: **your text**. Most markdown editors also support Ctrl+B (or Cmd+B on Mac) as a keyboard shortcut.

Related elements

Try it in the editor

Paste your markdown and see bold rendered instantly with professional themes.