References are one of the features of Markdown that allow you to create links to other sources. There are different ways to use references in Markdown, depending on what you want to achieve. Markdown is a simple and easy-to-use markup language that you can use to format text documents [^1] . References are one of the features of Markdown that allow you to create links to other sources [^2]. There are different ways to use references in Markdown, depending on what you want to achieve [^3].
Here is a brief summary of each method:
- Inline links are created by wrapping the link text in square brackets `([ ])` followed by the URL in parentheses `(( ))`. For example: `[Google](https://www.google.com)`
- Reference-style links are created by using two sets of square brackets, one for the link text and one for a reference identifier, followed by a colon and the URL somewhere else in the document. For example: `[Google][1]` ... `[1]: https://www.google.com` like this [Google][1]
- Footnote-style links are created by using a caret (^) and a number inside square brackets after the link text, followed by another set of square brackets with the same number, a colon, and the URL at the bottom of the document. For example: `I met Jim[^1]` ... `[^1]: https://www.jim.com`
[^1]: https://www.markdownguide.org/getting-started
[^2]: https://www.markdownguide.org/basic-syntax/#links
[^3]: https://www.markdownguide.org/extended-syntax/#reference-style-links