Links (Inline, Reference, Auto)
Create clickable links in multiple styles
Markdown Source
[Inline link](https://example.com) [Reference link][ref] [ref]: https://example.com <https://auto-link.com>
Rendered HTML Output
<a href="https://example.com">Inline link</a> <a href="https://example.com">Reference link</a> <a href="https://auto-link.com">https://auto-link.com</a>
Explanation
Inline: [text](url). Reference: [text][ref] with [ref]: url defined elsewhere. Auto-links: wrap URL in angle brackets for automatic linking.
Tips & Common Mistakes
- Reference-style links keep the document cleaner when reusing URLs. Reference definitions can appear anywhere.