Skip to content
All referenceText Formatting

Markdown Italic

Learn how to italicize text in markdown using asterisks or underscores. Syntax, examples, platform support, and common mistakes.

What is markdown italic?

Italic text in markdown is created by wrapping words with a single asterisk (*) or single underscore (_). Italics are used for emphasis, titles of works, technical terms, and foreign words.

Syntax

Asterisks

The most common way to italicize. Works on every platform.

Result
italic text

Underscores

Alternative syntax. Can fail mid-word on some platforms.

Result
italic text

Bold + Italic

Three asterisks combine bold and italic.

Result
bold and italic

Platform support

PlatformSupportedNotes
GitHubYes
GitLabYes
DiscordYesBoth * and _ work
SlackYesUses _underscores_ for italic
RedditYes
Stack OverflowYes
NotionYes
ObsidianYes

Common mistakes

Wrong
* italic text *
Right
*italic text*

Spaces inside the asterisks prevent italic from rendering. The markers must touch the text.

Wrong
_italic_inword
Right
*italic*inword

Underscores don't work mid-word on GitHub and most platforms. Use asterisks instead.

Wrong
*italic text**
Right
*italic text*

Mismatched markers — one asterisk on each side for italic, two for bold.

Tips for italic

1Use asterisks for consistency

If you use ** for bold, use * for italic. Mixing asterisks and underscores makes source harder to read.

2Italic for emphasis, not decoration

Reserve italics for genuine emphasis, book titles, or technical terms. Overuse dilutes the effect.

3Nest inside bold

You can nest italic inside bold: **this is _important_** renders as bold with the italic word inside.

**this is _important_**

Frequently asked questions

Everything you need to know.

1

How do I italicize text in markdown?

Wrap your text with single asterisks (*text*) or single underscores (_text_). Asterisks are recommended for better compatibility.

Related elements

Try it in the editor

Paste your markdown and see italic rendered instantly with professional themes.