fidian / hexmode

Vim plugin to edit binary files in a hex mode automatically.
147 stars 19 forks source link

Fix links in Readme #3

Closed padde closed 9 years ago

fidian commented 9 years ago

The syntax for links in markdown is

[text to display](url for link)

This is even shown in GitHub's Markdown documentation: https://guides.github.com/features/mastering-markdown/

padde commented 9 years ago

Yes and no. For links with an inline URL, the syntax is

[link text](http://www.example.com)

For links with references, the syntax is

[link text][reference]

...

[reference]: http://www.example.com

http://daringfireball.net/projects/markdown/syntax#link

Try clicking on the links in the Readme on master vs. this branch and you'll see why I patched them :wink:.

fidian commented 9 years ago

You're totally right. When comparing the documents, I looked at my master branch and your master branch and didn't see any difference in the links. I switched to look at the right branch of yours plus I tried clicking on the links.

Thanks yet again for the help!

padde commented 9 years ago

No problem. Thanks for creating the plugin :wink: