How double asterisks work
The marker is simple, but it needs both an opening and a closing pair.
- `**important**` renders as bold text.
- `*important*` renders as italic text.
- `***important***` often renders as bold and italic.
Bold syntax
In Markdown, double asterisks mark strong emphasis. Put the text directly between the two pairs: `**bold text**`.
Quick answer
`**text**` renders as bold text. The opening `**` starts the bold section, and the closing `**` ends it.
Reference
markdown **
The marker is simple, but it needs both an opening and a closing pair.
Extra spaces inside the markers can change the output or make the source harder to read.
Examples
This sentence has **bold text** inside it.Only the words between the markers become bold.
**Bold** and *italic* can live in the same paragraph.Use two asterisks for bold and one for italic.
FAQ
`**` is the common marker for bold text. Wrap the words with double asterisks, like `**important**`.
Many renderers support double underscores for bold text, but double asterisks are easier to read and more common in examples.
Check that you have both opening and closing markers and that the text is directly between them.