0

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
}
Gravity123
  • 1,130
  • 3
  • 21
  • 39

1 Answers1

0

My issue was that I had a "@memberof string", which then jsdoc made a "string.html" file out of.

Gravity123
  • 1,130
  • 3
  • 21
  • 39