jsdoc2md / dmd

The default output template for jsdoc2md
MIT License
38 stars 49 forks source link

{@link <namepath>} will break if "{@link" is at line ending #61

Closed BITespresso closed 5 years ago

BITespresso commented 5 years ago

This example

// Link is generated

    /**
     * Calculates a suggestion for the region which can be used as input for
     * {@link cascadeOverlapAllWindows}. The suggested region is printed to the console and returned
     * by this method.
     */

works as expected, while the following will not generate a link, but put literally {@link cascadeOverlapAllWindows} in the output.

// No link generated

    /**
     * Calculates a suggestion for the region which can be used as input for {@link
     * cascadeOverlapAllWindows}. The suggested region is printed to the console and returned by
     * this method.
     */

In JSDoc both will generate a correct result.