/wiki/TagSee.wiki
http://jsdoc-toolkit.googlecode.com/ · Unknown · 28 lines · 18 code · 10 blank · 0 comment · 0 complexity · 89728c39e5cd66c2b107e08768a54901 MD5 · raw file
- #summary @see
- == The @see Tag ==
- The `@see` tag allows you to refer to another symbol or resource that may be related to the one being documented.
- === Syntax ===
- {{{
- @see seeDescription
- }}}
- * seeDescription - Required: a description of a resource to refer to for more information.
- === Example ===
- If the first word is a documented symbol then that will become a link to the documentation, otherwise the text is displayed exactly as entered (meaning @link tags will not be rendered).
- {{{
- /**
- * @see ClassName#methodName
- * @see The <a href="http://www.example.com">Example Project</a>.
- */
- }}}
- === See Also ===
- * The [TagLink @link] tag can be used to duplicate the behavior of @see outside of the @see tag.