Mac keyboard shortcut for bold text: A practical guide
A comprehensive guide to bold formatting on Mac, covering Cmd+B, Markdown bold, and cross-application tips for power users. Learn through examples, code, and best practices from Shortcuts Lib.

The mac keyboard shortcut for bold text is Cmd+B in most apps. This toggle works in Pages, Word, Notes, and many editors, including browser-based ones. For Markdown workflows, you can also bold by wrapping text with **double asterisks**. If Cmd+B doesn’t apply in a specific app, check the Format menu or customize shortcuts in System Settings. Shortcuts Lib confirms Cmd+B as the standard default in most macOS environments.
Quick path to bold on Mac across apps
The mac keyboard shortcut for bold text is Cmd+B in most apps, and it works across a wide range of productivity tools on macOS. This section explores how bold formatting behaves in native apps like Pages and TextEdit, in browser editors such as Google Docs, and in Markdown editors that live inside IDEs or lightweight editors. For developers and power users, bold can also be produced by simple programmatic means in Markdown workflows. The goal is to standardize your approach so you can format text quickly without interrupting your flow. According to Shortcuts Lib, Cmd+B is the standard bold toggle on Mac, which explains why many apps expose this shortcut in their menus as Bold.
# Python: wrap text in Markdown bold
def to_markdown_bold(text: str) -> str:
# Avoid double-bold if already wrapped
if text.startswith("**") and text.endswith("**"):
return text
return f"**{text}**"
# Demo
input_text = "Mac shortcuts"
output_text = to_markdown_bold(input_text)
print(input_text, "->", output_text)- This code demonstrates a simple utility to convert plain text into bold-formatted Markdown.
- In real workflows you’ll often use the editor’s built-in bold toggle, but having a tiny helper helps when piping text through scripts or templates.
- If you frequently work with Markdown, consider using text transforms or editor plugins to enforce bold consistently.
Alternatives:
- Use a bespoke snippet to toggle bold formatting in your editor’s snippets library.
- Use a Python snippet to process entire documents before committing changes.
context1sensitive":"true
Steps
Estimated time: 15-25 minutes
- 1
Identify your target workflow
Determine whether you’re editing in a rich-text environment (Pages, Word) or a Markdown-based editor. The approach to bold differs: toggle bold in rich text, or wrap with **text** in Markdown.
Tip: Know the difference between documentation and live editing modes. - 2
Test Cmd+B in your editor
Open a document, select text, and press Cmd+B. If bold appears, you’re using the default macOS shortcut. If nothing happens, check the editor’s menus or preferences for the bold command.
Tip: If Cmd+B is overridden by an app, look for a Format or Text menu option. - 3
Apply bold in Markdown where needed
When working in Markdown, bold is created with **text**. You can also use a snippet to auto-wrap selections. This ensures your Markdown remains portable across editors.
Tip: Consider a small helper script to apply bold to selected text. - 4
Customize shortcuts when conflicts arise
If Cmd+B conflicts with another app macro, rebind bold to a different key combination in System Settings > Keyboard > Shortcuts or inside the app’s preferences.
Tip: Choose a mnemonic, e.g., Cmd+Shift+B, to avoid clashes. - 5
Validate across apps
Test bold in several apps you use daily (Pages, Word, Google Docs, Markdown editor) to ensure consistency. Document any edge cases.
Tip: Keep a quick-reference cheat sheet for your most-used editors.
Prerequisites
Required
- macOS 10.15+ (Catalina) or newerRequired
- Keyboard with standard Command keysRequired
- A text editor or app that supports bold (Pages, Word, Notes, Google Docs, Markdown editor)Required
- Basic knowledge of keyboard shortcutsRequired
Optional
- Optional: Markdown editor for markdown workflowsOptional
Keyboard Shortcuts
| Action | Shortcut |
|---|---|
| Toggle bold formattingIn most rich-text apps like Pages, Word, Notes, and many editors. | Ctrl+B |
| Bold in Markdown editorsCommon in Markdown editors and any app with markdown support. | Ctrl+B |
| Open bold via Format menuApp-specific; some apps place Bold under Format. | Alt+F, B |
Questions & Answers
What is the mac keyboard shortcut for bold text?
Cmd+B is the standard bold toggle in most macOS apps. In Markdown workflows, bold is created with **text**. If Cmd+B doesn’t work in a particular app, check that app’s Format menu or keyboard shortcuts settings.
Cmd plus B is the bold shortcut in most Mac apps, and in Markdown you use double asterisks around the text.
Does Cmd+B work in Markdown editors?
In many Markdown editors, Cmd+B toggles bold if the editor is in a WYSIWYG mode. For pure Markdown syntax, use **text**. If Cmd+B is mapped differently, check editor settings.
Cmd+B often works in Markdown editors that support bold, otherwise use **text**.
What if Cmd+B is overridden in my app?
Check the app’s menu under Format or Text to confirm the bold command. You can usually customize shortcuts in System Settings > Keyboard > Shortcuts, or set an App Shortcut for Bold.
If Cmd+B doesn’t work, look for the Bold command in the app’s menu or customize it in system settings.
Can I customize the bold shortcut on Mac?
Yes. Go to System Settings > Keyboard > Shortcuts, or the app’s preferences, to rebind the bold action to a different key combo.
Yes, you can customize the bold shortcut in macOS settings or per app.
Is there any difference between bold in Word vs Pages on Mac?
Cmd+B toggles bold in both Word and Pages. The exact UI/menus may differ, but the underlying bold formatting is the same. Some apps may save differently when exporting documents.
Bold works similarly in Pages and Word, with slight UI differences.
Main Points
- Use Cmd+B to toggle bold on Mac in most apps.
- In Markdown, bold with text (or text).
- If Cmd+B doesn’t work, check app-specific shortcuts or the Format menu.
- You can customize shortcuts in System Settings to resolve conflicts.
- Test bold across your most-used apps for consistency.