Various ways to create links in Markdown.
Inline Links
[Link text](https://example.com)
[Link with title](https://example.com "Title")
Reference Links
Define links once, use multiple times:
[Link text][ref]
[Another link][ref]
[ref]: https://example.com
Shorthand (link text = reference):
[example.com]
[example.com]: https://example.com
Autolinks
URLs and emails are automatically linked:
<https://example.com>
<user@example.com>
Relative Links
[Local page](./other-page.md)
[Parent directory](../index.md)
Fragment Links
[Section](#heading-id)
[Other page section](./page.md#section)
Images as Links
[](https://example.com)