Home/Docs/Markdown Links

Markdown Links

Links are one of the most useful features in Markdown. They help connect readers to web pages, documentation, files, email addresses, and different sections within the same document.

Whether you're writing a GitHub README, technical documentation, blog post, or project guide, Markdown links make navigation simple and improve the overall reading experience.

This guide explains every type of Markdown link with practical examples, best practices, and common mistakes.

Practice as you read: Open the Markdown Editor to try inline, reference, and relative links with live preview, or use the Markdown Link Generator to build links quickly.

Open EditorDownload PDF

Common Mistakes

Missing closing parenthesis

Incorrect

[GitHub](https://github.com

Correct

[GitHub](https://github.com)

Empty link text

Avoid

[](https://example.com)

Instead

[Project Website](https://example.com)

Broken relative paths

Incorrect

[Guide](guide.md)

Correct

[Guide](docs/guide.md)

Always verify the file path before publishing.

Continue Learning

Continue learning Markdown with these guides:

Available now

Coming soon to MDConvertHub Docs

  • Markdown Code Blocks

Open the Markdown Editor and experiment with inline links, reference links, relative links, and heading anchors.

Frequently Asked Questions

  1. 1

    How do I create a Markdown link?

    Use the following syntax: [Link Text](https://example.com)

  2. 2

    Can Markdown link to another section on the same page?

    Yes. Most Markdown editors support heading anchors. Example: [Go to FAQ](#faq)

  3. 3

    What are reference links?

    Reference links separate the URL from the main content, making large documents easier to maintain.

  4. 4

    Does GitHub support relative links?

    Yes. GitHub fully supports relative links between files inside a repository.

  5. 5

    Can I create email links in Markdown?

    Yes. Use the mailto: format. Example: [Contact](mailto:hello@example.com)