How to Make Italic and Bold Text in Markdown
(* and _)
You want italic or bold text in Markdown. Wrap the words in * for italic and ** for bold. Here is the full set, plus the small thing that trips most people up.
Italic, bold, and both
The number of * (or _) around your text is what sets the style:
| You write | You get |
|---|---|
*italic* or _italic_ | Italic |
**bold** or __bold__ | Bold |
***bold italic*** | Bold and italic |
~~strikethrough~~ | Strikethrough (GFM) |
So one * is italic, two is bold, and three is both. You can also nest them, like **bold with an *italic* word**.
The usual reason it doesn't render: a stray space
The marks have to sit right next to the text, with no space in between:
* italic * → shows the stars (spaces inside)
*italic* → renders as italic If your * or ** is showing up as literal stars, a stray space is the most common cause. There is a full walkthrough in why your Markdown bold or italic is not working.
Which to use: * or _
Both * and _ give the same result, so it is mostly personal taste. One practical tip: * is safer inside a word. An _ between letters, like in snake_case_names, may not trigger italic, while * is more reliable there. When in doubt, use *.
One thing _ does not do is underline. A single _ is italic; Markdown has no native underline, covered in how to underline text in Markdown.
See it rendered
In a plain text editor you just see the * and _ symbols. To see the actual italic and bold, open the .md in a Markdown editor.
- Open
app.noteloom.ccin Chrome / Edge / Arc and mount the folder with your file. - Open the
.mdin thereadingview to see it rendered, orliveview to write and preview as you go. - Your file stays a plain
.mdon disk; nothing is uploaded.
FAQ
How do you make italic text in Markdown?
What is the difference between * and _ for italic?
Why is my *italic* showing the stars instead of italic text?
How do you make text both bold and italic?
Does _ underline text in Markdown?
Does NoteLoom show italic and bold?
See your italic and bold rendered
Write your *italic* and **bold** in a .md file, open NoteLoom in Chrome / Edge / Arc, mount the folder, and read it rendered in the reading view. No install, no account.