markdown-to-jsx icon indicating copy to clipboard operation
markdown-to-jsx copied to clipboard

implicit link name syntax isn't supported

Open vdh opened this issue 3 years ago • 2 comments

When trying to write a link with an implicit link name (documented here in the Markdown syntax), it doesn't seem to work?

e.g.:

This is a [link][] test

[link]: http://example.com

vdh avatar Oct 21 '22 01:10 vdh

I like to use implicit link names, as well. If it's possible to implement these, I'd absolutely find it useful 👍🏻

Often, I like to drop the second set of brackets altogether. e.g.:

This is a [link] test

[link]: http://example.com

ElliotFriend avatar Feb 06 '23 16:02 ElliotFriend

Can confirm this still isn't working. See below for rendered in the test environment and what github renders it as.

# This is Markdown

Implicit link name link: [google][]

Implicit simple link: [google]

[google]: https://google.com "Google"

image


This is Markdown

Implicit link name link: google

Implicit simple link: google

Sillocan avatar Jul 26 '24 18:07 Sillocan