A simple converter from Javadoc to Ceylon doc.
Usage
=====
ceylon run herd.javadoc2ceylondoc inputFile outputFile
Example
=======
Let’s say you’re porting a library from Java to Ceylon.
You have already updated all the code, but you don’t feel like rewriting all the documentation.
What you currently have is this:
~~~ceylon
import java.util { Date }
/**
* A person.
*
* @author Jane Doe
* @author Jim Coworker
*/
shared class Person(String firstName, String lastName, Date birthday = ...