(param)
| 441 | } |
| 442 | |
| 443 | function jsDocRenderArg(param) { |
| 444 | const optionalText = (param.optional) ? '_optional_ - ' : '**required** - ' |
| 445 | const type = `${param.type.names[0]}` |
| 446 | // md += `| **[${param.name} - \``](${data.githubUrl})** <br/> by [${userName}](${profileURL}) <br/>` |
| 447 | return `| \`${param.name.replace(/^pluginConfig\./, '')}\` <br/>${optionalText}${type}| ${param.description} |` |
| 448 | } |
| 449 | |
| 450 | function jsDocRenderExample(example, allData) { |
| 451 | if (!example) { |
no outgoing calls
no test coverage detected