我正在尝试使用dokkerjs在我的项目中记录我的代码,该项目包含多个JavaScript文件。是否可以将目录作为.dokker.json
中的文档的源文件?
我提到this链接。
{
"dir": "docs",
"literate": {
"source": "dokker.js",
"dir": "annotated"
},
"jsdoc": {
"title": "Dokker.js",
"source": "dokker.js", // want to add multiple files here , I tried *.js
"markdown": "README.md",
"html": "index.html",
"readme": "README.md",
"template": "templates/index.ejs.html",
"github": "https://github.com/oceanhouse21/dokker/blob/master/dokker.js",
"site": "http://dokkerjs.com"
},
"mocha": {
"command": "mocha --reporter doc",
"test": "test/dokker.js",
"path": "tests.html",
"template": "templates/tests.ejs.html"
}
}