onury / docma

A powerful tool to easily generate beautiful HTML documentation from JavaScript (JSDoc), Markdown and HTML files.
https://onury.io/docma
MIT License
334 stars 34 forks source link

extends @external types does not work #84

Closed takase1121 closed 5 years ago

takase1121 commented 5 years ago

I have this code snippet

/**
 * @external EventEmitter
 * @see {@link https://nodejs.org/api/events.html}
 */

/**
 * Job manager for document generation.
 * @class Akizuki
 * @extends {external:EventEmitter}
 */
class Akizuki extends EventEmitter {
    ...
}

The results did not show a proper link for the extends part image Anyone has any ideas?

onury commented 5 years ago

Remove external:.

/**
 *  ...
 *  @extends EventEmitter
 */