When generating docs, the type "string" (among others) will become a link to "string.html" which does not exist. How do we prevent that from happening? I want plain text to show for these types.
/**
* the comment
*
* @param {string} myString
*/
config:
"opts": {
"encoding": "utf8",
"recurse": true,
"destination": "out/clean/",
"template": "./node_modules/clean-jsdoc-theme/"
},
"tags": {
"allowUnknownTags": false,
"dictionaries": ["jsdoc","closure"]
},
"source": {
"includePattern": ".+\\.js?$",
"include": ["path/to/file"]
},
"plugins": ["plugins/markdown"],
"markdown": {
"hardwrap": false,
"idInHeadings": true
}