Reputation: 4367
I'm trying to create a link in markdown file in Atom. I have the text "VLC" that I want to link to the text "Install VLC" further down in the file.
I've tried this:
[VLC](#vlc)
for the text clickable text "VLC"
and this:
<a name="vlc"></a>Install VLC
for the "Install VLC" anchor
In the markdown preview window (I'm using the markdown-preview
package) "VLC" comes up marked in blue and the pointer changes to a hand with finger but nothing happens when I click on the text.
Any suggestions what I'm doing wrong?
Upvotes: 3
Views: 2221
Reputation: 300
for anyone interested I've found out markdown-preview-enhanced do the thing, plus some more nice features like "go to the top" or "auto-menu" (constructed from headers)
Upvotes: 1