JSDOC @link不起作用



我使用 jsdoc 3.4.3 我试图使用 @link 链接到 iv'e 完成的内部@typedef

/**
 * @typedef {Object} Color
 * @property {string} [attr] - attribute name corresponding to an outcome event
 */
/**
 * @typedef {Object} Config
 * ..
 * ..
 * ..
 * @property {Color} [l.lC=Color] - coloring specification for the nodes as defined in {@link Color}
 * @property {Color} [l.nC=Color] - coloring specification for the links as defined in {@link Color}
 */

这是一个JavaScript文件的文档。有些人可以看到问题(或知道@link的已知问题)

也许例如

@see [Color](module-Color.html)

另外,请检查您的配置是否有 cleverLinks 和 monospaceLinks

最新更新