Markdown Bold Tool

Markdown Bold Tool

Create bold text in Markdown using double asterisks or underscores. Learn proper bold formatting for GitHub, Discord, and documentation with live preview.

Try the Markdown Bold Generator

Bold Settings

Output

Understanding Markdown Bold Syntax

Markdown provides multiple ways to create bold text in your documents. Understanding these options will help you create more effective documents and improve your Markdown workflow.

Method 1: Double Asterisk

Use double asterisks to make text bold. This is the most commonly used method.

markdown
**This text will be bold**

Result: This text will be bold

Method 2: Double Underscore

Alternatively, you can use double underscores for bold text.

markdown
__This text will also be bold__

Result: This text will also be bold

Inline Bold Text

You can make parts of a sentence bold by surrounding specific words.

markdown
This is **important** information.

Result: This is important information.

Combining Bold with Other Formatting

Bold text can be combined with other Markdown formatting like italic and code.

markdown
***Bold and italic text*** **Bold text with `code`** **Bold** and *italic* text

Result: Bold and italic text
Bold text with code
Bold and italic text

Frequently Asked Questions

What's the difference between ** and __ for bold text?

Both methods produce identical results. Double asterisks (**) are more commonly used and widely supported across all Markdown flavors, while double underscores (__) are an alternative syntax that works just as well.

How to make text bold in GitHub markdown?

GitHub Markdown fully supports both bold syntax methods. You can use either double asterisks**text**or double underscores__text__to create bold text in GitHub issues, pull requests, comments, and documentation.

Can I combine bold with other formatting like italic?

Yes, you can combine bold with other Markdown formatting. For bold and italic together, use three asterisks or underscores:***bold and italic***or___bold and italic___You can also combine bold with inline code using backticks:**Bold `code`**

Does bold formatting work in code blocks?

No, Markdown formatting like bold text is not processed inside code blocks or inline code. The asterisks or underscores will be displayed literally within code blocks. This is by design, as code blocks are meant to display code exactly as written.

How do I escape asterisks if I don't want bold formatting?

Use a backslash before the asterisks to escape them:\*\*text\*\*will display as **text** without bold formatting. This works for any Markdown syntax character you want to display literally.