Tom MacWright 48bb7a283e feat: support for the @see tag in Markdown & HTML
* add @see ref support for parsing to html

* edit tests

* fix markdown issue with @see ref

* edit related title so it would not generate with see ref every time

* edit tests

* Fix tests

Co-authored-by: Vladimir Berezovsky <berezovsky@ex.ua>
2020-03-30 23:35:32 -07:00

15 lines
353 B
JavaScript

/**
* This description is ignored because the method has a tagged description.
* @returns {number} numberone
* @description This function returns the number one.
* @see [markdown link](http://foo.com/)
* @version 1.0.0
* @since 2.0.0
* @copyright Tom MacWright
* @license BSD
*/
module.exports = function() {
// this returns 1
return 1;
};