Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaDoc to (Doku)Wiki conversion / doclet [closed]

Our company has a very large public Java API which is currently being released standalone and online using (of course) JavaDoc. It is surrounded by product documentation which links into the API.

We are moving our static documentation to DokuWiki - which works pretty good - and want to keep the links.

Now it would be good to have a method (or doclet) that exports the JavaDoc directly into DokuWiki - or a very near alternative.

Question: Is there something like this or do you know a method to do just that?

like image 391
gamma Avatar asked Sep 24 '09 14:09

gamma


1 Answers

Here's a Doclet which writes to JSON.

https://bitbucket.org/ananelson/json-doclet/src/tip/src/it/dexy/jsondoclet/Doclet.java

It might help get you started writing a custom Doclet.

like image 57
ananelson Avatar answered Oct 04 '22 19:10

ananelson