最佳答案
您知道 JSDoc 中是否有某种 <code />
标记吗?我需要像下面这样在我的文档中添加一些代码:
/**
* This function does something see example below:
*
* var x = foo("test"); //it will show "test" message
*
* @param {string} str: string argument that will be shown in message
*/
function foo(str)
{
alert(str);
}
我需要 JDoc 将注释中的代码显示为代码(如果没有突出显示语法,至少像预先格式化或灰色背景的代码)。