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.
**This text will be bold**Result: This text will be bold
Method 2: Double Underscore
Alternatively, you can use double underscores for bold text.
__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.
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.
***Bold and italic text*** **Bold text with `code`** **Bold** and *italic* textResult: 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.
Related Tools
Create italic text in Markdown using asterisks or underscores. Learn different methods for adding emphasis in GitHub, Discord, and other platforms.
Create underlined text in Markdown using HTML tags and CSS styling. Learn different methods for adding underlines in GitHub, Discord, and other platforms.
Create strikethrough text in markdown for GitHub, Discord, and other platforms. Learn different strikethrough markdown methods and format your text with double tildes.
Create properly formatted blockquotes in Markdown using the standard '>' syntax. Support for nested quotes and multi-line quotes with live preview.
Create and format Markdown lists easily. Generate ordered, unordered, and nested lists with proper syntax and customizable markers.
Create task lists and checkboxes in Markdown for GitHub, GitLab, and other platforms. Generate checked and unchecked boxes with customizable text.