/**
* Both of these will link to the bar function.
* @see {@link bar}
* @see bar
*/
function foo() {}
docs
Input:
Output with jsdoc to markdown:
Should be:
**See:** [Class#method](Class+method)
I've been looking through the ddata source trying to work out how to make this change. Not entirely sure if this is a jsdoc-parse issue or a dmd issue. Either way I'm happy to submit a PR.
docs
Input:
/** @see Class#method */Output with jsdoc to markdown:
Should be:
I've been looking through the ddata source trying to work out how to make this change. Not entirely sure if this is a
jsdoc-parseissue or admdissue. Either way I'm happy to submit a PR.