Abnaxos / markdown-doclet

A Doclet that allows the use of Markdown in JavaDoc comments.
GNU General Public License v3.0
319 stars 40 forks source link

Change rendering of Wiki-style links #7

Open Abnaxos opened 11 years ago

Abnaxos commented 11 years ago

Wiki-style links should be rendered as link tags. I.e., ˋ[[Foo#bar() foobar]]ˋ should become ˋ{@link Foo#bar() foobar}ˋ.

The current way Wiki-style links are rendered doesn't make much sense, this is how Wiki-style links should work. Event though most people probably won't use them anyway and stick to ˋ{@link Foo#bar() foobar}ˋ, because IDEs will recognise these links. But still, that way, such links would actually make sense, at least for vi users. ;)

Note: This change breaks compatibility with older versions.

Shredder121 commented 8 years ago

Just a question, I mainly want to use these wiki-style links for external links.

I don't recall {@link }s working for links to other than source, right? So my question is, do you still plan to support that then?