Vertispan / jsinterop-ts-defs

Ingests jsinterop-annotated Java and generates TypeScript definitions
Apache License 2.0
7 stars 3 forks source link

Missing space before tsdoc tags #85

Closed niloc132 closed 11 months ago

niloc132 commented 11 months ago

This is pretty minor, but doesn't look right to me at least.

Generated output for tags that start a line is missing a space between the * and the start of the tag. That is,

/**
 * A method that returns something.
 * 
 * @return a value
 */

becomes

/**
 * A method that returns something.
 *@return a value
 */

The newline is also lost after the "body" text, but seems even more minor. Could be worth testing with extra newlines and rendered html output.