Easy Tutorial
❮ Md Title Md Image ❯

Markdown Links

Link usage is as follows:

[Link Name](Link Address)

or

<Link Address>

For example:

This is a link [tutorialpro.org](https://www.tutorialpro.org)

The display result is as follows:

Directly using the link address:

<https://www.tutorialpro.org>

The display result is as follows:

Advanced Links

We can set a link using variables, with variable assignments at the end of the document:

This link uses 1 as the URL variable [Google][1]
This link uses tutorialpro as the URL variable [tutorialpro][tutorialpro]
Then assign values to the variables (URLs) at the end of the document

  [1]: http://www.google.com/
  [tutorialpro]: http://www.tutorialpro.org/

The display result is as follows:

❮ Md Title Md Image ❯