5

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.

J4cK
  • 30,459
  • 8
  • 42
  • 54

1 Answers1

4

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.

ChrisGPT was on strike
  • 127,765
  • 105
  • 273
  • 257