Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view the list of reference in a markdown file?

By default we show reference in markdown file as below :

* [Example Grammer][example_grammer]- this is a reference

and bottom of the page added the reference list that are not visible in the markdown file view.

[example_grammer]: http://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.xtext.doc%2Fcontents%2F020-grammar-language.html

Is it possible to show the reference in the view file as well. Thanks.

like image 563
J4cK Avatar asked Sep 29 '22 06:09

J4cK


1 Answers

The original Markdown specification doesn't support this:

Link definitions are only used for creating links during Markdown processing, and are stripped from your document in the HTML output.

There might be some third-party implementations of Markdown that do support this, but I'm not aware of any.

like image 86
Chris Avatar answered Oct 03 '22 05:10

Chris