@author

.. @author::
语法

@author <name> [<emailAddress>]

概述

@author标记标识项目的作者. 在JSDoc 3.2及更高版本中, 如果作者姓名后跟一个括在尖括号中的电子邮件地址, 则默认模板会将电子邮件地址转换为“mailto: ”链接.

示例
Documenting the author of an item
/**
 * @author Jane Smith &lt;jsmith@example.com>
 */
function MyClass() {}