Skip to content
All referenceText Formatting

Markdown Underline

Learn how to underline text in markdown. There's no native syntax, but there are workarounds using HTML. Platform support and alternatives.

What is markdown underline?

Standard markdown has no native underline syntax. To underline text, you need to use raw HTML tags (<u>) or platform-specific syntax. This is by design — underlines are reserved for hyperlinks in web conventions.

Syntax

HTML tag

The only reliable way to underline in markdown. Uses raw HTML.

Result
underlined text

Discord underline

Discord uses double underscores for underline (not bold like standard markdown).

Result
underlined text

Platform support

PlatformSupportedNotes
GitHubPartialOnly via <u> HTML tag in issues/comments, not README
GitLabPartialVia <u> HTML tag
DiscordYesUses __ (double underscores)
SlackNoNo underline support
RedditNoNo underline support
Stack OverflowPartialVia <u> HTML tag
NotionYesKeyboard shortcut Ctrl+U
ObsidianYesVia <u> HTML tag or plugin

Common mistakes

Wrong
__underline__
Right
<u>underline</u>

In standard markdown, __ means bold, not underline. Only Discord treats __ as underline.

Wrong
<ins>underline</ins>
Right
<u>underline</u>

While <ins> is semantically correct HTML for inserted text, <u> is more widely supported in markdown renderers.

Tips for underline

1Avoid underlines for web content

On the web, underlines signal clickable links. Underlining non-link text confuses readers. Use bold or italic instead.

2Platform-specific syntax

Discord uses __ for underline, while standard markdown uses __ for bold. Know your platform.

3Use bold instead

In most cases, **bold** achieves the same emphasis as underline and is universally supported.

Frequently asked questions

Everything you need to know.

1

Can you underline text in markdown?

There's no native markdown syntax for underline. Use the HTML <u> tag: <u>your text</u>. Discord is an exception — it uses __double underscores__.

Related elements

Try it in the editor

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