links-in-markdown.md
Basically, you can make links in Markdown in two ways:
[Inlink link](www.google.com)
output as:
[Inlink link](www.google.com "Title go the link")
output as:
Inlink link (Hover the link to see the title)
Links with reference need at least one (blank) line between the text with the link and the link reference itself.
That's why we suggest to put them at the end of the document.
Link for reference][reference text]
.. at the end of the document..
[reference text]: http://www.google.com
output as:
[citing sources] [1]
.. at the end of the document..
[1]: http://www.google.com
output as:
This kind of link does not work on all blogs or in all MD text editor.
This an example [example]
.. at the end of the document.>
[example]: http://www.google.com
output as:
This an example example
To be avoided !
Here after comes all the links references:
[example]: http://www.google.com
[1]: http://www.google.com
[reference text]: http://www.google.com