美文网首页
JSdoc @module 中文跳转路径错误修复

JSdoc @module 中文跳转路径错误修复

作者: 背着生活往前走你才辨的出美和丑 | 来源:发表于2021-11-08 11:50 被阅读0次

找到node_modules/jsdoc/lib/jsdoc/util/templateHelper.js,第353行
原代码:

return util.format('<a href="%s"%s>%s</a>', encodeURI(fileUrl + fragmentString),
            classString, text);

修改为:

return util.format('<a href="%s"%s>%s</a>', encodeURI(fileUrl + fragmentString).replace(/%2525/g,"%25"),
            classString, text);

重新:npm run doc

相关文章

网友评论

      本文标题:JSdoc @module 中文跳转路径错误修复

      本文链接:https://www.haomeiwen.com/subject/cweuzltx.html