Using Links in Markdown

Link Syntax

To create a link, use the following syntax:

[Link Name](Link Address)

or

<Link Address>

For example:

This is a link [WebCode101](https://www.WebCode101.com)

The display result is as follows:

This is a link WebCode101

Directly using the link address:

<https://www.WebCode101.com>

Advanced Links

You can set up a link using variables. Define the variables at the end of the document:

This link uses 1 as the URL variable [Google][1]
This link uses webcode101 as the URL variable [WebCode101][webcode101]
Then assign the URLs at the end of the document:

  [1]: http://www.google.com/
  [webcode101]: http://www.WebCode101.com/

The display result is as follows:

Using Links in Markdown0