jsdoc @link 不起作用

sha*_*ay 6 javascript jsdoc

我使用 jsdoc 3.4.3,我尝试使用 @link 链接到我完成的内部 @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}
 */
Run Code Online (Sandbox Code Playgroud)

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

小智 1

也许例如

@see [Color](module-Color.html)
Run Code Online (Sandbox Code Playgroud)

另外,检查 smartLinks 和 monospaceLinks 的配置