evilstreak / markdown-js

A Markdown parser for javascript
7.69k stars 863 forks source link

Markdown links not parsing. #166

Closed dragonfire1119 closed 10 years ago

dragonfire1119 commented 10 years ago

I've tried to make a link in markdown and it just doesn't show it at all.

[John Gruber]: http://daringfireball.net This produces nothing.

evilstreak commented 10 years ago

You've got a link reference there without a link. If you just want a plain link try:

[John Gruber](http://daringfireball.net)

Check out the original syntax documentation for more options with links.

dragonfire1119 commented 10 years ago

Oh that's weird I tried that from his site and last night it didn't work. Ok my bad well thanks for markdown.js nice work on it. Thanks for the support.