这是我第一次被要求编写文档,我选择的方式是使用 jsdoc。
以下是我的 jsdoc 的示例 jsdoc.json 配置文件。它只读取一个 README.md 文件。
{
"source": {
"include": "./client/src",
"includePattern": ".js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": ["plugins/markdown"],
"templates": {
"cleverLinks": true,
"monospaceLinks": true,
},
"opts": {
"recurse": true,
"destination": "./docs/",
"readme": "./README.md"
}
}
如何让它读取多个 .md 文件,就像我有 index.md 和 content.md 一样?