我按照提到的所有步骤操作,但仍然得到"意外的令牌?当我在tutorials文件夹中有conf.json文件时,在JSON的0位和#34; 错误。如果我删除conf.json,它的工作完美。但我需要conf.json。
我有一个带有.md文件的教程文件夹和一个看起来像这样的conf.json文件
{
"name_of_tutorial": {
"title": "Test Title"
}
}
并在我的jsdoc.json文件中看起来像这样
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc", "closure"]
},
"opts": {
"recurse": true,
"encoding": "utf8",
"destination": "./docs",
"readme": "./Content/tutorials/project_README.md",
"tutorials": "./Content/tutorials"
},
"source": {
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": [
"plugins/markdown"
],
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"default": { }
}
}
在读取文件并将其解析为json时看起来有问题。 你能帮我解决一下吗?