mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
* 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>
15 lines
353 B
JavaScript
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;
|
|
};
|