Skip to content
All referenceLinks & Media

Markdown Auto Link

How markdown automatically converts URLs and email addresses into clickable links using angle brackets or auto-detection.

What is markdown auto link?

Auto-links turn plain URLs and email addresses into clickable hyperlinks without needing to write full link syntax. Angle brackets (<url>) create explicit auto-links. GitHub Flavored Markdown also auto-links bare URLs (without angle brackets) when they begin with http:// or https://.

Syntax

Angle bracket URL

Wrap a URL in angle brackets for an explicit auto-link. Works in all CommonMark parsers.

Angle bracket email

Email auto-links create mailto: links.

Bare URL (GFM)

GitHub Flavored Markdown auto-links bare https:// URLs without angle brackets.

Result
Visit https://example.com for more.

Platform support

PlatformSupportedNotes
GitHubYesBare URLs auto-linked in GFM
GitLabYes
DiscordYesAuto-links bare URLs
SlackYes
ObsidianYes
Standard markdownPartialAngle brackets only; bare URLs not auto-linked

Common mistakes

Wrong
www.example.com (no protocol)
Right
https://www.example.com

Auto-linking requires the full protocol (https://). Bare www. links are not auto-linked in most parsers.

Tips for auto link

1Prefer explicit links for important URLs

Auto-links show the raw URL as the link text. For cleaner output, use [descriptive text](https://url.com) instead.

2Suppress auto-linking with backticks

If you need to show a URL as plain text without it becoming a link, wrap it in backticks: `https://example.com`.

Frequently asked questions

Everything you need to know.

1

How do I make a URL clickable in markdown?

Angle brackets: <https://example.com>. Or use full link syntax: [click here](https://example.com). GitHub also auto-links bare https:// URLs.

Related elements

Try it in the editor

Paste your markdown and see auto link rendered instantly with professional themes.