We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@example
Now, it doesn't render @example JSDoc tag for classes' constructors. When to run deno doc --html ./mod.ts && open docs/~/A.html with mod.ts file:
deno doc --html ./mod.ts && open docs/~/A.html
mod.ts
// mod.ts export class A { /** * @example Creates an instance. * ``` * new A(); * ``` */ constructor() {} /** * @example Call a method. * ``` * const a = new A(); * a.method(); * ``` */ method() {} }
It can see A.prototype.method's example but it cannot see A.prototype.constructor's example.
A.prototype.method
A.prototype.constructor
No route for A.prototype.constructor
It can see A.prototype.method's example at docs/~/A.prototype.method.html
docs/~/A.prototype.method.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Now, it doesn't render
@example
JSDoc tag for classes' constructors. When to rundeno doc --html ./mod.ts && open docs/~/A.html
withmod.ts
file:It can see
A.prototype.method
's example but it cannot seeA.prototype.constructor
's example.The text was updated successfully, but these errors were encountered: