Qortora · Search · Indexed page

jsdoc.appFetched 2026-08-17T12:26:27Z

Use JSDoc

Refer to some other documentation for more information.

Open original source · Full cached text

Use JSDoc Syntax @see <namepath> @see <text> Overview The @see tag allows you to refer to another symbol or resource that may be related to the one being documented. You can provide either a symbol's namepath or free-form text. If you provide a namepath, JSDoc's default template automatically converts the namepath to a link. Examples Using the @see tag /** * Both of these will link to the bar function. * @see {@link bar} * @see bar */ function foo() {} // Use the inline {@link} tag to include a link within a free-form description. /** * @see {@link foo} for further information. * @see {@link http://github.com|GitHub} */ function bar() {} Related links {@link}