Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 705 Bytes

automatic-url-linking.md

File metadata and controls

26 lines (17 loc) · 705 Bytes
title syntax-id
Automatic URL Linking
automatic-url-linking

Many Markdown processors automatically turn URLs into links. That means if you type http://www.example.com, your Markdown processor will automatically turn it into a link even though you haven’t used brackets.

http://www.example.com

The rendered output looks like this:

http://www.example.com

Disabling Automatic URL Linking

If you don't want a URL to be automatically linked, you can remove the link by denoting the URL as code with backticks.

`http://www.example.com`

The rendered output looks like this:

http://www.example.com